Android: app invisible to tablets on google playstore -
i've published app on google playstore, app visible phones, cannot see tablet(nexus /). here manifest:
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="com.application.myapp" android:versioncode="3" android:versionname="2.0" > <uses-sdk android:minsdkversion="4" android:targetsdkversion="13" /> <supports-screens android:anydensity="true" android:xlargescreens="true" android:largescreens="true" android:normalscreens="true" android:smallscreens="true"/> <uses-permission android:name="android.permission.write_apn_settings" /> <uses-permission android:name="android.permission.write_settings" /> <uses-permission android:name="android.permission.internet" /> <uses-permission android:name="android.permission.access_network_state" /> <uses-permission android:name="android.permission.access_wifi_state" /> <uses-permission android:name="android.permission.receive_boot_completed" /> <uses-permission android:name="android.permission.read_external_storage" /> <uses-permission android:name="android.permission.write_external_storage" /> <application android:allowbackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app" android:supportsrtl="true" > <activity.......> </activity> </application> </manifest>
how can make visible tablets?
this stack overflow question similar yours. suggests besides screen sizes, should make sure permissions , features things particular device can use. (for example, setting camera feature cause devices without cameras excluded.)
manifest , supported devices showed in android market - stack overflow
Comments
Post a Comment