我有一个仅限手机使用的 Android 应用程序。我使用以下代码只允许手机从 Google Play 下载应用程序
<!-- Only permit app to be used on handsets, prevent tablets -->
<compatible-screens>
<!-- all small size screens -->
<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" />
<screen android:screenDensity="480" android:screenSize="small" />
<!-- all normal size screens -->
<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" />
<screen android:screenDensity="480" android:screenSize="normal" />
<!-- LG G3 QHD Resolution -->
<screen android:screenDensity="640" android:screenSize="small" />
<screen android:screenDensity="640" android:screenSize="normal" />
<screen android:screenDensity="640" android:screenSize="large" />
<screen android:screenDensity="640" android:screenSize="xlarge" />
</compatible-screens>
今天,一位用户报告说 Google Play 告诉他们他们的设备与该应用程序不兼容。他们使用的是运行 Android 6.0 Marshmallow 的 Verizon Wireless Huawei Nexus 6P。
我猜我需要在清单的节点中添加更多内容来支持这个设备,但是我不确定 screenDensity 会是什么。如何让我的应用支持此设备?
当我在 Android Studio 中为这个确切的设备创建一个模拟器时,应用程序在它上面运行得非常好。