我已将我的应用程序提交到谷歌播放,但它说"此应用程序与您的所有设备不兼容。"
问题在于我设置的屏幕限制。 它的设置如下:
<!-- all small size screens -->
<screen
android:screenDensity="ldpi"
android:screenSize="small" />
<screen
android:screenDensity="mdpi"
android:screenSize="small" />
<screen
android:screenDensity="hdpi"
android:screenSize="normal" />
<screen
android:screenDensity="xhdpi"
android:screenSize="normal" />
<!-- all normal size screens -->
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="false"
android:xlargeScreens="true" />
我想让我的应用程序仅受分辨率为hdpi和higer但不支持mdpi和ldpi的设备支持。我做了这个改变:
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="false"
android:xlargeScreens="true" />
从清单中移除了兼容的屏幕标签,但现在使用mdpi的设备可以下载我不想要的应用程序。
我猜结果应该是一些组合,但无法找到正确的方法。 在这篇文章中发现了一些有用的东西:Google Play Says Your Device isnt compatible with this application但它不应该解决我的问题。在此先感谢您的帮助!