File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed
pythonforandroid/bootstraps
service_library/build/templates
service_only/build/templates Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 8
8
<uses-sdk android : minSdkVersion =" {{ args.min_sdk_version }}" android : targetSdkVersion =" {{ android_api }}" />
9
9
10
10
<application {% if debug %}android:debuggable=" true" {% endif %} >
11
+
12
+ {{ args.extra_manifest_application_xml }}
13
+
11
14
{% for name in service_names %}
12
15
<service android : name =" {{ args.package }}.Service{{ name|capitalize }}"
13
16
android : process =" :service_{{ name }}"
Original file line number Diff line number Diff line change 52
52
android : theme =" {{args.android_apptheme}}{% if not args.window %}.Fullscreen{% endif %}"
53
53
android : hardwareAccelerated =" true"
54
54
android : extractNativeLibs =" true" >
55
+
56
+ {{ args.extra_manifest_application_xml }}
57
+
55
58
{% for l in args.android_used_libs %}
56
59
<uses-library android : name =" {{ l }}" />
57
60
{% endfor %}
Original file line number Diff line number Diff line change 55
55
android : extractNativeLibs =" true"
56
56
{% if debug %}android:debuggable=" true" {% endif %}
57
57
>
58
+
59
+ {{ args.extra_manifest_application_xml }}
60
+
58
61
{% for l in args.android_used_libs %}
59
62
<uses-library android : name =" {{ l }}" />
60
63
{% endfor %}
You can’t perform that action at this time.
0 commit comments