Skip to content

Commit 0afbecb

Browse files
committed
AndroidManifest: added supports-screens tag and force all the screens size to True. should close kivy/kivy#760
1 parent 86f96bf commit 0afbecb

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/templates/AndroidManifest.tmpl.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@
66
android:installLocation="{{ args.install_location }}"
77
>
88

9+
<supports-screens
10+
android:smallScreens="true"
11+
android:normalScreens="true"
12+
android:largeScreens="true"
13+
android:anyDensity="true"
14+
{% if android_api >= 9 %}
15+
android:xlargeScreens="true"
16+
{% endif %}
17+
/>
18+
919
<application android:label="@string/appName"
1020
android:icon="@drawable/icon"
1121
android:hardwareAccelerated="true"

0 commit comments

Comments
 (0)