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