仅适用于手机的Google Play应用

时间:2017-08-10 08:34:11

标签: android android-layout google-play android-manifest

我想仅为移动电话上传我的应用程序,因为我在清单中添加了以下代码 `

    <!-- 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这样的设备。有人告诉我,我错了什么? 感谢。

0 个答案:

没有答案