我已将应用程序上传到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和Sony Xperia J.。
先谢谢,
添
答案 0 :(得分:0)
android:largeScreens="true"
倾向于平板电脑,大小为7“,因此,如果您通过7”平板电脑搜索应用程序,那么您就可以看到。
您的<compatible-screens>
标记似乎没问题,我猜您不需要使用support-screen>
,请参阅here