My application has disappeared from the tablet on Google Play, but is still available for the phone

I have an application published for several months in a Google game. People with phones and tablets can download it. Surprisingly, sometimes over the past 2 weeks there is something with changes in google play, and my application is available only for the phone (I can not find it when searching using the tablet).

Any idea if something has changed or do I need to implement? I do not specify the device screen size in my manifest file, so this should be fine, right?

Thank you so much

EDIT. The following is a manifest file. The fact is that this application supported the tablet, but suddenly it stopped.

<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.myApp" android:versionCode="5" android:versionName="3.0" > <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="15" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.SEND_SMS" /> <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="com.android.vending.CHECK_LICENSE" /> <uses-permission android:name="android.permission.VIBRATE" /> ........ ////Activities are here .. </manifest> 
+4
android google-play
source share
3 answers

I found a solution I used the support screen tag and I explicitly set the xlarge screen to true. I contacted Google and they said that this is the problem they are investigating.

+4
source share

Try adding this to your manifest.

 <compatible-screens > <screen android:screenSize="small" android:screenDensity="xhdpi" /> <screen android:screenSize="normal" android:screenDensity="xhdpi" /> <screen android:screenSize="large" android:screenDensity="xhdpi" /> <screen android:screenSize="xlarge" android:screenDensity="xhdpi" /> </compatible-screens> 

Good luck

 <screen android:screenSize="small" android:screenDensity="480" /> <screen android:screenSize="normal" android:screenDensity="480" /> <screen android:screenSize="large" android:screenDensity="480" /> <screen android:screenSize="xlarge" android:screenDensity="480" /> 

Edit: for xxhdpi you should use "480"

+4
source share

Try changing:

 <uses-permission android:name="android.permission.SEND_SMS" /> <uses-permission android:name="android.permission.VIBRATE" /> 

To:

 <uses-feature android:name="android.hardware.telephony.SEND_SMS" android:required="false"/> <uses-feature android:name="android.hardware.vibrate" android:required="false"/> 
+1
source share

All Articles