I have created an Application compatible only for Android Tabs. The Manifest.xml declaration for the App is :
<supports-screens android:smallScreens="false"
android:normalScreens="false"
android:largeScreens="true"
android:xlargeScreens="true"
android:requiresSmallestWidthDp="600" />
<uses-permission android:name="in.wptrafficanalyzer.locationingooglemapv2.permission.MAPS_RECEIVE" />
<uses-permission android:name="com.tab.permission.MAPS_RECEIVE" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.CALL_PHONE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
I am able to download the App from the Google Play Store, but when I try to download from Google Nexus 7 Tab, I am getting the following error :
This App is incompatible with your Nexus 7 /
The Item is not compatible with your device
Please help me on what changes required on the manifest declaration to make App compatible with Nexus 7
Note : I am also using the following Tag in the Manifest.xml file
<uses-feature
android:glEsVersion="0x00020000"
android:required="true" />
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…