我只为移动设备创建了一个应用程序,而不为平板电脑创建了一个应用程序,因此我在应用程序清单中添加了兼容屏幕的代码。
<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 +已为用户启用。
预先感谢