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) を持っています。アプリのページに、自分の電話はアプリでサポートされていないと表示されます。私の電話には上記のすべての機能があり、私のアプリは私の電話で正常に動作しています。

マニフェストで uses-feature タグを明示的に定義していませんが、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
4

2 に答える 2

5

android.permission.CAMERA の使用は、Android のドキュメントに記載されているように、android.hardware.camera と android.hardware.camera.autofocus を意味します (このページの最後の表を参照してください: 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 に答える