如何限制我的应用仅适用于平板电脑?例如。如何支持Galaxy Tab但不支持Galaxy SIII?两者都具有相同的分辨率和密度。
这段代码是否足够:
<supports-screens
android:largeScreens="false"
android:normalScreens="false"
android:requiresSmallestWidthDp="720"
android:smallScreens="false"
android:xlargeScreens="true" />
再次阅读文档之后,有以下部分:
<compatible-screens>
<screen android:screenSize="xlarge" android:screenDensity="mdpi" />
<screen android:screenSize="xlarge" android:screenDensity="hdpi" />
<screen android:screenSize="xlarge" android:screenDensity="xhdpi" />
</compatible-screens>
使整个设置正确吗?
答案 0 :(得分:0)
首先在清单
中作出上述规定转到控制台(开发人员控制台)
https://play.google.com/apps/publish/
您将能够看到&#39;查看支持的设备&#39;超链接 打开它,
您可以在那里看到支持的设备列表。手动排除您不想要的设备。