Play商店说我的手机不支持我自己的应用程序?

Sat*_*esh 7 android

我的清单中有这些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
Run Code Online (Sandbox Code Playgroud)

我有索尼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
Run Code Online (Sandbox Code Playgroud)

小智 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" />
Run Code Online (Sandbox Code Playgroud)