简体   繁体   中英

Android app, device (Galaxy Mini) not supported

My android app is not supported on GalaxyMini (among others). When I look at the features needed by the app (copy/pasted from google play admin console), all seems to be there on the GalaxyMini. I don't understand why it would not be served on GalaxyMini.

NativePlateform armeabi seems not to be the problem as I've tried with a previous apk without this feature requirement and the GalaxyMini is still not supported.

Any idea?

Localized to: default, Dutch, French
Permissions: android.permission.INTERNET, android.permission.ACCESS_FINE_LOCATION, android.permission.CAMERA, android.permission.MODIFY_AUDIO_SETTINGS, android.permission.WAKE_LOCK
Features: android.hardware.camera, android.hardware.camera.autofocus, android.hardware.location, android.hardware.location.gps, android.hardware.screen.landscape, android.hardware.screen.portrait, android.hardware.touchscreen
No main expansion file
No expansion patch file
[8/31/12 10:00:14 AM] : API level: 7-16+
Supported screens: small-xlarge
OpenGL textures: all
Native platforms: armeabi

The galaxy mini does not have android.hardware.camera.autofocus . Its camera is fixed focus. If the feature is not an absolute requirement in your app then you could add android:required="false" to its uses-feature tag.

After many tries, the problem was "android.hardware.camera.autofocus" GalaxyMini is supposed to support autofocus ont the tech specs. I really wish that the google play developper console tells us which of the manifest settings are used to exclude a device, that would save us a lot of time.

So I just added the following line in the manifest to make it available to galaxy mini (and about 300 other devices!) :

<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM