0

可能重复:
与三星 Galaxy Mini 的设备兼容性问题

我创建了一个安卓应用并在安卓市场上发布了它。但是,当我尝试在市场上寻找它时,它并没有出现在三星 Galaxy Mini (GT-S5770) 上,但它确实出现在 HTC 渴望 S 上。但是,当我尝试从 eclipse 运行它到三星手机时,它作品。

我查看了开发者控制台,它说该应用程序受限于三星 Galaxy mini,因为它的清单文件的权限。谁能帮我告诉三星银河手机的哪个特定功能有问题。

我的清单具有以下权限-

Screen layouts: SMALL NORMAL LARGE XLARGE
Required device features
android.hardware.camera
android.hardware.camera.autofocus
android.hardware.location
android.hardware.location.gps
android.hardware.location.network
android.hardware.screen.landscape
android.hardware.telephony
android.hardware.touchscreen

谢谢。

4

2 回答 2

2
<use-feature android:name="android.hardware.camera.autofocus" />

这是使您的应用程序与 Galaxy Mini 不兼容的罪魁祸首

将其删除并将更新放入 Google Play。

于 2012-11-25T21:00:47.907 回答
0

如果你把会发生什么

android:required="false"

那行得通吗?来源

于 2012-11-25T21:49:27.743 回答