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>
android google-play
Snake
source share