Guided by Multiple APK Support manual 画面サイズの異なる 3 つの異なる APK を公開しようとしています。次のフィルタを作成しました:
小さい画面の場合:
<supports-screens
android:smallScreens="true"
android:normalScreens="false"
android:largeScreens="false"
android:xlargeScreens="false"
android:requiresSmallestWidthDp="320"/>
通常画面と大画面の場合:
<supports-screens
android:smallScreens="false"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="false"
android:requiresSmallestWidthDp="540"/>
特大画面の場合:
<supports-screens
android:smallScreens="false"
android:normalScreens="false"
android:largeScreens="false"
android:xlargeScreens="true"/>
残りの 3 つのマニフェストはすべて同じように見えます。この apk を Google Play にアップロードしましたが、フィルターは正しいようです。
問題:アプリケーションを別のデバイスにインストールすると、常に通常の画面と大画面のバージョンがインストールされます。Galaxy S4 と HTC One でもフル HD 画面でテストしました。
Play コンソールで警告が 1 つだけSome devices are eligible to run multiple APKs. In such a scenario, the device will receive the APK with the higher version code.
あります。
私の構成の何が問題なのか、誰か考えがありますか? 前もって感謝します。