0

ガイドDistributing to Specific Sc​​reensを読み、両方を試しました

<compatible-screens
   android:smallScreens="false"
   android:normalScreens="false" 
   android:largeScreens="true"
   android:xlargeScreens="true"/> 

<supports-screens
   android:smallScreens="false"
   android:normalScreens="false" 
   android:largeScreens="true"
   android:xlargeScreens="true"/>

組み合わせても(知っている... 私は知っている... :D)

しかし、タブレットからの検索でアプリが表示されるのを制限することはできないようです (もちろん、インストールもされます)。

逆の設定は機能しますが..

<supports-screens
   android:smallScreens="false"
   android:normalScreens="false" 
   android:largeScreens="true"
   android:xlargeScreens="true"/>

私の電話は APK のタブレット バージョンと互換性がないようです。何を与える?Google Play がマニフェストを使用してフィルター処理するのを邪魔していないものはありますか?

4

1 に答える 1

1

この構文を使用してフィルタリングし、携帯電話のみに配布できるようにする必要があります (タブレット用のバージョンを作成する場合は、大きなものと特大のものを外挿して同じものを作成できます)。

<compatible-screens>
    <!-- all small size screens -->
    <screen android:screenSize="small" android:screenDensity="ldpi" />
    <screen android:screenSize="small" android:screenDensity="mdpi" />
    <screen android:screenSize="small" android:screenDensity="hdpi" />
    <screen android:screenSize="small" android:screenDensity="xhdpi" />
    <!-- all normal size screens -->
    <screen android:screenSize="normal" android:screenDensity="ldpi" />
    <screen android:screenSize="normal" android:screenDensity="mdpi" />
    <screen android:screenSize="normal" android:screenDensity="hdpi" />
    <screen android:screenSize="normal" android:screenDensity="xhdpi" />
</compatible-screens>
于 2012-12-04T23:11:11.457 に答える