我的应用程序仅支持小屏幕和普通屏幕,所有密度。我需要该应用程序可用于 Google Play 中的所有设备。具有大屏幕和超大屏幕的设备必须缩放我的应用程序。
我在清单中写道:
<supports-screens
android:anyDensity="true"
android:largeScreens="false"
android:largestWidthLimitDp="360"
android:normalScreens="true"
android:resizeable="false"
android:smallScreens="true"
android:xlargeScreens="false" />
我的应用是否可以在 Google Play 中适用于任何屏幕的所有设备?还是仅适用于 smallScreens 和 normalScreens?
我如何需要编写支持屏幕清单属性以使应用程序可用于所有设备?