Reputation: 16761
I've published my app to the Google Play store, and for some reason, I do not see my app appearing when browsing the store with the Nexus 7 device.
Here's the relevant section in my manifest:
<uses-feature android:glEsVersion="0x00020000" >
</uses-feature>
<uses-sdk
android:minSdkVersion="8" android:targetSdkVersion="20">
</uses-sdk>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" >
</uses-permission>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" >
</uses-permission>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" >
</uses-permission>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" >
</uses-permission>
<uses-permission android:name="android.permission.INTERNET" >
</uses-permission>
<uses-permission android:name="android.permission.WRITE_SETTINGS" >
</uses-permission>
<uses-permission android:name="android.permission.READ_LOGS" >
</uses-permission>
<uses-permission android:name="android.permission.VIBRATE" >
</uses-permission>
<uses-permission android:name="android.permission.WAKE_LOCK" >
</uses-permission>
<supports-screens android:requiresSmallestWidthDp="600"
android:compatibleWidthLimitDp="720"/>
I've already looked at several posts in stack overflow:
But none of these posts seem to be relevant to my situation. I don't seem to be requiring anything from the device in my app which the Nexus 7 device doesn't support.
Can anyone see what I'm missing?
Upvotes: 0
Views: 235
Reputation: 24848
Try this way,hope this will help you to solve your problem.
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true" />
Upvotes: 1
Reputation: 16761
Okay, I found the problem.
Apparently, the android:requiresSmallestWidthDp & android:compatibleWidthLimitDp attributes are not supported on every device, and that it is still required to add the large & xlarge attributes in the support-screens tag. Google are intending to roll-out the large/xlarge/etc attributes and rely solely on the compatible/required width DP attribute, but for now, it's still necessary to set these attributes.
Upvotes: 0