3

GalaxyMini(以及其他)不支持我的 android 应用程序。当我查看应用程序所需的功能(从 google play 管理控制台复制/粘贴)时,所有功能似乎都在 GalaxyMini 上。我不明白为什么它不会在 GalaxyMini 上提供。

NativePlateform armeabi 似乎不是问题,因为我已经尝试过没有此功能要求的以前的 apk 并且仍然不支持 GalaxyMini。

任何的想法?

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
4

2 回答 2

3

银河迷你没有android.hardware.camera.autofocus。它的相机是固定焦距的。如果该功能不是您的应用程序中的绝对要求,那么您可以添加android:required="false"到它的uses-feature标签中。

于 2012-08-31T10:29:34.310 回答
1

经过多次尝试,问题是“android.hardware.camera.autofocus” GalaxyMini 应该支持自动对焦技术规格。我真的希望 google play 开发者控制台告诉我们哪些清单设置用于排除设备,这将为我们节省大量时间。

所以我只是在清单中添加了以下行,以使其可用于galaxy mini(以及大约300个其他设备!):

<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
于 2012-08-31T10:30:07.333 回答