Galaxy S10 + Device与我的应用程序不兼容

时间:2019-05-03 06:42:11

标签: android react-native react-native-android

我只为移动设备创建了一个应用程序,而不为平板电脑创建了一个应用程序,因此我在应用程序清单中添加了兼容屏幕的代码。

<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" />
    <screen
        android:screenDensity="640"
        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" />
    <screen
        android:screenDensity="560"
        android:screenSize="normal" />
    <screen
        android:screenDensity="640"
        android:screenSize="normal" />
    <screen
        android:screenDensity="420"
        android:screenSize="normal" />
</compatible-screens>

一切正常,但是现在每当我们尝试在S10 +中下载应用程序时,我都会收到错误消息设备与此版本不兼容

我在播放控制台中检查了设备目录,其中显示的S10 +已为用户启用。

预先感谢

1 个答案:

答案 0 :(得分:1)

我有一个应用程序,该应用程序具有适用于平板电脑的版本和适用于手机的版本。 我按屏幕尺寸进行过滤:

  • 手机的正常尺寸
  • 大和xLarge平板电脑

我对使用s10 +的用户有问题,可以从Playstore下载该应用程序的平板电脑版本。

问题是S10 +使用大屏幕尺寸,因此您的应用不支持它。

我在ADB上模拟了它的大小和密度,表明它被认为是大的: enter image description here