我创建了一个Android应用程序并在Android市场上发布。但是,当我试图在市场上寻找它时,它似乎不适用于三星Galaxy Mini(GT-S5770),但它确实出现在HTC欲望的S.但是,当我尝试从eclipse运行到三星手机然后它的工作原理。
我查看了开发人员控制台,并表示由于其清单文件的权限,该应用程序仅限于三星galaxy mini。任何人都可以帮我告诉三星Galaxy手机哪个特殊功能有问题。
我的清单有以下权限 -
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
感谢。
答案 0 :(得分:2)
<use-feature android:name="android.hardware.camera.autofocus" />
这是让您的应用与Galaxy Mini不兼容的罪恶路线
将其删除并将更新置于Google Play中。
答案 1 :(得分:0)