我的AndroidManifest.xml中有以下部分用于受支持的屏幕:

    <compatible-screens>

        <!-- small devices, all densities -->
        <screen android:screenDensity="ldpi" android:screenSize="small" />
        <screen android:screenDensity="mdpi" android:screenSize="small" />
        <screen android:screenDensity="hdpi" android:screenSize="small" />
        <screen android:screenDensity="xhdpi" android:screenSize="small" />

        <!-- average devices, all densities -->
        <screen android:screenDensity="ldpi" android:screenSize="normal" />
        <screen android:screenDensity="mdpi" android:screenSize="normal" />
        <screen android:screenDensity="hdpi" android:screenSize="normal" />
        <screen android:screenDensity="xhdpi" android:screenSize="normal" />

         <!-- larger devices, all densities -->
         <screen android:screenDensity="ldpi" android:screenSize="large" />
         <screen android:screenDensity="mdpi" android:screenSize="large" />
         <screen android:screenDensity="hdpi" android:screenSize="large" />
         <screen android:screenDensity="xhdpi" android:screenSize="large" />

         <!-- tablets/extra large devices, all densities -->
         <screen android:screenDensity="ldpi" android:screenSize="xlarge" />
         <screen android:screenDensity="mdpi" android:screenSize="xlarge" />
         <screen android:screenDensity="hdpi" android:screenSize="xlarge" />
         <screen android:screenDensity="xhdpi" android:screenSize="xlarge" />

   </compatible-screens>


在Google Developer Console中,Sony Xperia Z2和Samsung Galaxy被标记为“不支持”。怎么会这样?我基本上涵盖了所有屏幕尺寸,直到xlarge。根据Android开发者指南(http://developer.android.com/guide/practices/screens_support.html)中的表3,索尼Xperia(1980x1020 @ 423ppi)和三星Galaxy S4(1980x1020 @ 441ppi)将采用xlarge / xhdpi,尽管密度肯定超过了表中的值。有我不知道的更高密度的预选赛吗? PlayStore还必须基于什么其他原因排除这些设备?

我已经尝试解决了一段时间,非常感谢您的帮助。

最佳答案

这些设备是您已排除的xxhdpi设备。

07-28 01:11
查看更多