我的清单中有这些
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
解决方法
android.permission.CAMERA的使用意味着android.hardware.camera和
android.hardware.camera.autofocus如Android文档中所述(参见本页的最后一个表: http://developer.android.com/guide/topics/manifest/uses-feature-element.html).
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" />