2013-01-02 55 views
7

我在我的清单中拥有这些android权限。Play商店说我的手机不支持我自己的应用程序?

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开发人员网站声称以下是必需的功能。

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 

回答

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" /> 
+0

谢谢!这帮了我。 aapt工具帮助我在发行游戏存储之前验证“使用功能”。 – Sathesh

1

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

相关问题