android - Application is suddently not compatible with tablets on Google Play -
my application "visible" on google play. did not make changes (i did not upload new apk) , application suddently not compatible tablets. help.
look @ simple manifest:
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="fly.is.fun.unlocker" android:versioncode="1" android:versionname="1.0" > <uses-sdk android:minsdkversion="7" android:targetsdkversion="7" /> <application android:allowbackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/apptheme" > <activity android:name="fly.is.fun.unlocker.mainactivity" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.main" /> <category android:name="android.intent.category.launcher" /> </intent-filter> </activity> </application> </manifest>
please check whether it's not visible on device or specific devices.
i had same problem. specific tab2. because using camera permissions , tab2 doesn't have autofocus camera.
so added following line in androidmanifest file , uploaded new apk market.
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false" /> now it's visible in google play.
also check filters on google play
hope helps.
Comments
Post a Comment