0

如何将我的应用程序限制为仅适用于平板电脑?例如,如何支持 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>

使整个设置正确吗?

4

1 回答 1

0

首先在清单中作出上述规定

转到控制台(开发人员的控制台)

https://play.google.com/apps/publish/
  • 从应用列表中选择您的应用。
  • 转到 APK 选项卡(页面左侧)

您将能够看到“查看支持的设备”超链接打开它,

您可以在那里查看支持的设备列表。手动排除您不想要的设备。

于 2013-02-13T11:16:35.213 回答