我的清单中有这些Android权限。
android.permission.INTERNET
android.permission.ACCESS_NETWORK_STATE
android.permission.ACCESS_FINE_LOCATION
android.permission.CAMERA, android.permission.WRITE_EXTERNAL_STORAGE
android.permission.SEND_SMS, android.permission.SYSTEM_ALERT_WINDOW
android.permission.READ_EXTERNAL_STORAGE
我有索尼Xperia Tipo手机(索尼ST21i)。应用页面显示我的应用不支持我的手机。我的手机具有以上所有功能,我的手机在手机上运行良好。
Google Developer网站将以下内容称为必需功能,但我没有在清单中明确定义任何uses-feature标记。
This application is only available to devices with these features, as defined in your application manifest.
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.telephony
android.hardware.touchscreen
答案 0 :(得分:5)
android.permission.CAMERA的使用意味着android.hardware.camera和 android.hardware.camera.autofocus如Android文档中所述(参见本页的最后一页:http://developer.android.com/guide/topics/manifest/uses-feature-element.html)。
由于您的设备无法自动对焦,因此无法下载您的应用。 你应该添加:
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false" />
答案 1 :(得分:1)
检查您是否需要自动对焦功能。大多数手机都被过滤掉了。