I have my app published for couple of months on Google play. People with phones and tablets are able to download it. Surprisingly, sometimes in the last 2 weeks, something with google play changes and my app is only available for phone (I can't find it when I search using a tablet).
Any idea if there is something changed or I need to implement? I don't specify any device screen size in my manifist file so it should be fine ,right?
Thanks a lot
EDIT. Below is the manifest file. The thing that this application was supporting tablet but all of the sudden 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>
I found the solution I used the support screen tag and I explicitly set the xlarge screen to true. I contacted Google and they said it is a issue they are investigating.
Try changing:
To:
Try adding this to your Manifest
Good Luck!
Edit: for xxhdpi you must use "480"