我想仅为移动电话上传我的应用程序,因为我在清单中添加了以下代码 `
<!-- all normal size screens -->
<screen
android:screenDensity="mdpi"
android:screenSize="normal" />
<screen
android:screenDensity="hdpi"
android:screenSize="normal" />
<screen
android:screenDensity="xhdpi"
android:screenSize="normal" />
<screen
android:screenDensity="xxhdpi"
android:screenSize="normal" />
<screen
android:screenDensity="xxxhdpi"
android:screenSize="normal" />
</compatible-screens>`
但是当我在谷歌游戏商店上传我的应用程序时,我的应用程序不支持像nexus5x,Nexus6和Nexus6p这样的设备。有人告诉我,我错了什么? 感谢。