我正在编写一个Cordova应用程序,我的CSS已经过优化,屏幕分辨率高于720x1280。我想禁止使用400x800 / 480x800的手机。
android:requiresSmallestWidthDp="720"
将上述行放入我的清单中是否有正确的方法?
答案 0 :(得分:0)
Google Play does not use this attribute,因此您应该在AndroidManifest.xml中使用supports-screens属性,如下所示:
<supports-screens android:smallScreens="false" android:normalScreens="false" android:largeScreens="true" android:xlargeScreens="true" />