1

appcompat ライブラリを使用してアプリを更新しましたが、多くのデバイスがアプリと互換性がありません。私はマニフェストで何も変更していません。

ここで私がマニフェストに持っているもの:

<uses-sdk
        android:minSdkVersion="7"
        android:targetSdkVersion="10"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.CALL_PHONE"/>
<uses-permission android:name="android.permission.CAMERA"/>
<uses-permission android:name="android.permission.READ_CONTACTS"/>
<uses-permission android:name="android.permission.WRITE_CONTACTS"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.SEND_SMS"/>

<uses-feature android:name="android.hardware.camera"/>
<uses-feature android:name="android.hardware.camera.autofocus"/>

開発者コンソールが私に言っていることは次のとおりです。

Previously active APKs supported more devices than those in the draft configuration.      
Some devices will not receive upgrades.
Devices currently running version 15 are no longer supported by the current configuration. Such devices will not receive upgrades. 
API levels in range 10+ and 
Screen layouts containing any of [small, normal, large, xlarge] and 
Features containing all of [android.hardware.CAMERA, android.hardware.LOCATION, android.hardware.TELEPHONY, android.hardware.TOUCHSCREEN, android.hardware.location.GPS, android.hardware.screen.PORTRAIT] but excluding any of [android.hardware.camera.AUTOFOCUS]

Devices currently running version 14 are no longer supported by the current configuration. Such devices will not receive upgrades. 
API levels in range 10+ and 
Screen layouts containing any of [small, normal, large, xlarge] and 
Features containing all of [android.hardware.TOUCHSCREEN, android.hardware.screen.PORTRAIT] but excluding any of [android.hardware.CAMERA, android.hardware.LOCATION, android.hardware.TELEPHONY, android.hardware.location.GPS]

誰かがコンソールが何について話しているのかを説明し、互換性を取り戻すために何をすべきかを提案できますか?

4

1 に答える 1

1

したがって、Google サポートのフィードバックから:

この場合、android.hardware.camera.autofocus. 詳細については...

私は彼らの助けに本当に感謝しています、そしてそれは十分に速かったです

しかし!このラインは過去2年間ありました。そして今、appcompat を使用してプロジェクトを更新した後、Google はそれを制限することにしました。アプリはオートフォーカスをまったく気にしません。そして、私より前に誰がこの行を書いたのかわかりません。

ここで同様の質問をすべて読み、ほとんどすべてを試しましたが、私の場合、サポートだけが私を助けることができると思います.

于 2013-09-26T20:13:46.627 に答える