GalaxyMini(以及其他)不支持我的Android应用程序。当我查看应用程序所需的功能(从谷歌播放管理控制台复制/粘贴)时,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
答案 0 :(得分:3)
galaxy mini没有android.hardware.camera.autofocus
。它的相机是固定焦点。如果该功能不是您应用中的绝对要求,那么您可以将android:required="false"
添加到其uses-feature
标记中。
答案 1 :(得分:1)
经过多次尝试,问题是“android.hardware.camera.autofocus” GalaxyMini应该支持技术规格的自动对焦。我真的希望谷歌播放开发者控制台告诉我们哪些清单设置用于排除设备,这将为我们节省大量时间。
所以我只是在清单中添加了以下行,以便将它提供给galaxy mini(以及大约300个其他设备!):
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>