7

我的清单中有这些 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

我有一台 Sony Xperia Tipo 手机 (Sony ST21i)。应用页面显示我的应用不支持我的手机。我的手机具有上述所有功能,并且我的应用程序在我的手机上运行良好。

尽管我没有在清单中明确定义任何使用功能标签,但谷歌开发者网站将以下内容作为必需的功能。

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
4

2 回答 2

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" />
于 2013-01-02T18:48:06.640 回答
1

检查您是否需要自动对焦功能。大多数手机都被过滤掉了。

于 2013-01-02T18:31:39.280 回答