Hii i have submitted an app to playstore but it isn't compatible with Nexus here is my Manifest My App is on List of supported Devices in the Google Play
and when i check the same in the nexus device it is not at all visible on Search
<uses-sdk android:minSdkVersion="14"
android:targetSdkVersion="14"/>
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:resizeable="true"
android:smallScreens="true"
android:xlargeScreens="true"
/>
<uses-permission android:name="android.permission.GET_TASKS" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.FLASHLIGHT" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
<uses-permission android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT" />
<uses-permission android:name="android.permission.PREVENT_POWER_KEY" />
<uses-feature android:name="android.hardware.camera" android:required="false"/>
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
<uses-feature android:name="android.hardware.location" android:required="false"/>
<uses-feature android:name="android.hardware.location.gps" android:required="false"/>
<uses-permission
android:name="android.permission.FLASHLIGHT"
android:permissionGroup="android.permission-group.HARDWARE_CONTROLS"
android:protectionLevel="normal"
android:required="false" />
I Have Searched in google and did necessary Modifications to Manifest still i don't know why my app isn't compatible with nexus 7
please help me
Thanks In Advance
You are declaring the flashlight permission twice. And the first time you aren't specifying that it is not required.
This is probably conflicting with the second declaration.
Try removing the first one and see what happens.
You should define the support screens feature in your manifest as below which will allow to support nexus 7:
May be you need to add this line also since you are using READ_PHONE_STATE permission
uses-sdk android:minSdkVersion="9" android:targetSdkVersion="19" in manifest
The problem doesn't seem to be related to your listing on the app store. According to the console your application is compatible with the Nexus 7.
The first thing I would suggest is checking appt.
Next, my guess is that either the Play Store hasn't updated the listing yet or your device is not identifying itself appropriately.
According to this post: Nexus 7 Support for Android Application Manifest Assembly
Nexus 7 cannot support
<uses-permission android:name="android.permission.CAMERA" />
.