我想限制在Tablets中安装应用程序。我在Android清单文件上设置了受支持的设备。
<!-- 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" />
<!-- 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" />
</compatible-screens>
上面的代码工作正常但我的应用程序不支持Samsung Note 4设备。我想允许安装Note 4以便在清单文件中添加哪个参数?
答案 0 :(得分:0)
最好在您的案例中从开发者控制台中排除任何您想要的设备。默认情况下,它标记所有设备,以检查设备何时与您请求的硬件兼容。