現在、1280x800 と 1280x720 の 2 つの解像度をサポートしているゲームをアップロードしました。今、私は以下のマニフェストに設定しました
<supports-screens
android:xlargeScreens="true"
android:requiresSmallestWidthDp="600"
/>
<compatible-screens>
<!-- all small size screens -->
<screen android:screenSize="normal" android:screenDensity="hdpi" />
<!-- all normal size screens -->
<screen android:screenSize="xlarge" android:screenDensity="mdpi" />
</compatible-screens>
しかし、それでも私のアプリはGalaxy 10で表示されますが、Galaxy s3では表示されません.
http://developer.android.com/guide/practices/screens_support.html#DeclaringTabletLayoutsを参照しました
720dp: a 10” tablet (720x1280 mdpi, 800x1280 mdpi, etc).
どこで間違いを犯したか教えてください。