我的应用程序在 google 三星 Galaxy Note 4 Play 商店中不可见
My app is not visible in google play store for samsung galaxy note 4
我已经在 google Play 商店中发布了一个应用程序。此应用程序专为手机设计,我通过编辑清单文件中的 compatible-screens 元素,使其在平板电脑上不可见。
问题是某些屏幕尺寸较大(超过 5 英寸)的手机也无法 "see" 我在 google Play 商店中的应用。例如,我在 Play 商店中找不到来自 samsung 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>
当我第一次发布我的应用程序时,我遇到了与 nexus 6 相同的问题。但我通过添加以下行修复了它:
<screen android:screenSize="normal" android:screenDensity="480" />
<screen android:screenSize="normal" android:screenDensity="560" />
之后,我的应用程序可用于 nexus 6,但仍不可用于平板电脑。我怎样才能让它也对三星 galaxy note 4 可见?
要为 Samsung Galaxy note 4 提供支持,请在您的清单中添加给定的代码片段
<compatible-screens>
<screen
android:screenDensity="640"
android:screenSize="normal" />
</compatible-screens>
此外,至少提供一个 xxxhdpi 应用程序图标,因为设备可以在启动器上显示较大的应用程序图标。
我已经在 google Play 商店中发布了一个应用程序。此应用程序专为手机设计,我通过编辑清单文件中的 compatible-screens 元素,使其在平板电脑上不可见。
问题是某些屏幕尺寸较大(超过 5 英寸)的手机也无法 "see" 我在 google Play 商店中的应用。例如,我在 Play 商店中找不到来自 samsung 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>
当我第一次发布我的应用程序时,我遇到了与 nexus 6 相同的问题。但我通过添加以下行修复了它:
<screen android:screenSize="normal" android:screenDensity="480" />
<screen android:screenSize="normal" android:screenDensity="560" />
之后,我的应用程序可用于 nexus 6,但仍不可用于平板电脑。我怎样才能让它也对三星 galaxy note 4 可见?
要为 Samsung Galaxy note 4 提供支持,请在您的清单中添加给定的代码片段
<compatible-screens>
<screen
android:screenDensity="640"
android:screenSize="normal" />
</compatible-screens>
此外,至少提供一个 xxxhdpi 应用程序图标,因为设备可以在启动器上显示较大的应用程序图标。