我已经上传了我的游戏,目前支持两种分辨率 1280x800 和 1280x720。现在我在清单中设置了下面
<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).
请让我知道我在哪里犯了错误。