Google Play - Zero Supported Devices
Solution 1:
Problem sorted, but not sure exactly how... I tried removing all of the compatible-screen and support-screen code, but it didn't make much difference. The only thing I can think of is that I removed the line;
<uses-featureandroid:name="android.hardware.CAMERA" />
Which shouldn't have been there anyway. Now supported by 2522 devices, so pretty happy.
Here's the new manifest anyway:
<uses-sdkandroid:minSdkVersion="5"android:targetSdkVersion="17"/><uses-featureandroid:name="android.hardware.location"android:required="false"/><uses-featureandroid:name="android.hardware.camera"android:required="false"/><uses-permissionandroid:name="android.permission.ACCESS_FINE_LOCATION" /><uses-permissionandroid:name="android.permission.ACCESS_COARSE_LOCATION" /><uses-permissionandroid:name="android.permission.ACCESS_NETWORK_STATE" /><uses-permissionandroid:name="android.permission.CAMERA" /><applicationandroid:icon="@drawable/icon"android:label="@string/app_name"android:theme="@android:style/Theme.Light"android:allowBackup="false"><activityandroid:label="@string/app_name"android:name="com.blah.blahpro.Main" ><intent-filter ><actionandroid:name="android.intent.action.MAIN" /><categoryandroid:name="android.intent.category.LAUNCHER" /></intent-filter></activity><activityandroid:label="@string/app_name"android:name="com.blah.blahpro.Find"android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
><intent-filter ><actionandroid:name="com.blah.blahactivity.FIND" /><categoryandroid:name="android.intent.category.DEFAULT" /></intent-filter></activity></application>
Solution 2:
It seems that uses-feature
is case sensitive.
You wrote two features in your manifest:
<uses-featureandroid:name="android.hardware.camera"android:required="false"/><uses-featureandroid:name="android.hardware.CAMERA" />
The first one is OK. You'd like to use a camera, but it is not required.
The problem is that the second requires an android.hardware.CAMERA
, which is not present in any Android device. They have a camera
, not a CAMERA
.
I hope this helps you.
Solution 3:
I suggest commenting out compatible-screens and support-screens in the manifest, and see what happens when you upload the apk. I expect you will see that many devices are allowed when you do this.
Then, add back these requirements a few at a time, uploading the apk each time and seeing which restrictions are causing the # of devices to drop. Once you determine which restrictions are causing the problem, you can keep those out of the final build.
Solution 4:
I know it is late to answer, I face the same problem. With setting false all users-features, play store still shows zero devices supported.
Here is solution, hope will help someone
<uses-featureandroid:glEsVersion="0x00020000"android:required="true" />
Also
<supports-screensandroid:anyDensity="true"android:largeScreens="true"android:normalScreens="true"android:resizeable="true"android:smallScreens="true"android:xlargeScreens="true" />
Post a Comment for "Google Play - Zero Supported Devices"