1

我已将一个应用程序上传到 Google Play 商店,该应用程序仅与高分辨率屏幕兼容。我在 Manifest.xml 文件中使用以下代码使应用程序仅与高分辨率屏幕兼容

<compatible-screens>
<!-- small size screens -->
<screen android:screenSize="small" android:screenDensity="hdpi" />
<!-- all normal size screens -->
<screen android:screenSize="normal" android:screenDensity="hdpi" />     
<!-- large screens -->
<screen android:screenSize="large" android:screenDensity="hdpi" />

<supports-screens android:smallScreens="false"
                      android:normalScreens="false"
                      android:largeScreens="true"
                      android:xlargeScreens="false"
                       />

当我从浏览器在 Google Play 上搜索我的应用程序时,我可以查看应用程序详细信息,但显示与设备不兼容。此外,当我从设备搜索时,该应用程序似乎不可用/未找到结果。谁能建议我在清单文件中需要进行哪些修改,以便我能够下载该应用程序?

注意:我尝试过使用三星 Galaxy S、Galaxy Duos 和索尼 Xperia J。

提前致谢,

蒂姆。

4

1 回答 1

0

android:largeScreens="true"倾向于大小为 7 英寸的平板电脑,因此,如果您通过 7 英寸平板电脑搜索您的应用程序,那么您就能看到。

你的<compatible-screens>标签似乎没问题,我想你不需要使用support-screen>see here

于 2013-01-21T04:50:13.777 回答