forked from kivy/python-for-android
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstrings.tmpl.xml
More file actions
17 lines (17 loc) · 864 Bytes
/
strings.tmpl.xml
File metadata and controls
17 lines (17 loc) · 864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="KivySupportCutout">
<item name="android:windowNoTitle">true</item>
<!-- Display cutout is an area on some devices that extends into the display surface -->
{% if args.display_cutout != 'never'%}
<item name="android:windowLayoutInDisplayCutoutMode">{{ args.display_cutout }}</item>
<item name="android:windowTranslucentStatus">true</item>
<item name="android:windowTranslucentNavigation">true</item>
<item name="android:windowFullscreen">true</item>
{% endif %}
</style>
<string name="app_name">{{ args.name }}</string>
<string name="private_version">{{ private_version }}</string>
<string name="presplash_color">{{ args.presplash_color }}</string>
<string name="urlScheme">{{ url_scheme }}</string>
</resources>