我已将一个应用程序上传到 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。
提前致谢,
蒂姆。