我的应用程序在三星galaxy note 4的谷歌play商店中不可见



我在谷歌play商店发布了一个应用程序。该应用程序是为手机设计的,我通过编辑清单文件中的兼容屏幕元素,使其在平板电脑上不可见。

问题是,一些大屏幕(超过5英寸)的手机也无法在谷歌play商店上"看到"我的应用程序。例如,我在游戏商店找不到三星galaxy note 4(5.7英寸,1440 x 2560像素,~515 ppi)的应用程序。

我应该如何设置兼容的屏幕元素,以便准确地分离手机和平板电脑?

<compatible-screens>
    <!-- all small size screens -->
    <screen android:screenSize="small" android:screenDensity="ldpi" />
    <screen android:screenSize="small" android:screenDensity="mdpi" />
    <screen android:screenSize="small" android:screenDensity="hdpi" />
    <screen android:screenSize="small" android:screenDensity="xhdpi" />
    <!-- all normal size screens -->
    <screen android:screenSize="normal" android:screenDensity="ldpi" />
    <screen android:screenSize="normal" android:screenDensity="mdpi" />
    <screen android:screenSize="normal" android:screenDensity="hdpi" />
    <screen android:screenSize="normal" android:screenDensity="xhdpi" />
    <screen android:screenSize="normal" android:screenDensity="480" />
    <screen android:screenSize="normal" android:screenDensity="560" />
</compatible-screens>

当我第一次发布我的应用程序时,nexus6也遇到了同样的问题。但我通过添加以下行来修复它:

    <screen android:screenSize="normal" android:screenDensity="480" />
    <screen android:screenSize="normal" android:screenDensity="560" />

在那之后,我的应用程序可以用于nexus6,但仍然不能用于平板电脑。我怎么能让它在三星galaxy note 4上也可见?

要为三星Galaxy note 4提供支持,请在您的清单中添加给定的代码片段

 <compatible-screens>
    <screen
        android:screenDensity="640"
        android:screenSize="normal" />
</compatible-screens>

此外,至少提供一个xxxhdpi应用程序图标,因为设备可以在启动器上显示大型应用程序图标。

相关内容

最新更新