I have uploaded my first app ("Spray Diary") to google play and notice that there seem to be no supported devices when you press the 'Show Devices' button.
I can view the app on my own phone, but not my tablet. I understand that the supported devices depends on the manifest file -
AddManifestText(
<uses-sdk android:minSdkVersion="4" />
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
It seems to suggest all screen sizes are supported, so why doesn't the app appear on google play when viewed using the tablet, and why is the list of supported devices on the Google Play Developer Console empty?
I can view the app on my own phone, but not my tablet. I understand that the supported devices depends on the manifest file -
AddManifestText(
<uses-sdk android:minSdkVersion="4" />
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
It seems to suggest all screen sizes are supported, so why doesn't the app appear on google play when viewed using the tablet, and why is the list of supported devices on the Google Play Developer Console empty?