2013-01-02 77 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

檢查您是否需要自動對焦功能。大多數手機都會被過濾掉。

相關問題