File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed
pythonforandroid/bootstraps
service_only/build/templates Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -168,6 +168,8 @@ ready.
168
168
access. Defaults to 5000.
169
169
- ``--extra-manifest-xml ``: Extra xml to write directly inside the
170
170
``<manifest> `` element of AndroidManifest.xml.
171
+ - ``--extra-manifest-application-arguments ``: Extra arguments to be
172
+ added to the ``<manifest><application> `` tag of AndroidManifest.xml.
171
173
- ``--manifest-placeholders ``: Inject build variables into the manifest
172
174
via the ``manifestPlaceholders `` property.
173
175
- ``--enable-google-services ``: Enable the Google Services Gradle plugin.
Original file line number Diff line number Diff line change 53
53
{% if args.backup_rules %}android:fullBackupContent=" @xml/{{ args.backup_rules }}" {% endif %}
54
54
android : theme =" {{args.android_apptheme}}{% if not args.window %}.Fullscreen{% endif %}"
55
55
android : hardwareAccelerated =" true"
56
- android : extractNativeLibs =" true" >
56
+ android : extractNativeLibs =" true"
57
+ {{ args.extra_manifest_application_arguments }}
58
+ >
57
59
{% for l in args.android_used_libs %}
58
60
<uses-library android : name =" {{ l }}" />
59
61
{% endfor %}
Original file line number Diff line number Diff line change 56
56
android : usesCleartextTraffic =" true"
57
57
android : extractNativeLibs =" true"
58
58
{% if debug %}android:debuggable=" true" {% endif %}
59
+ {{ args.extra_manifest_application_arguments }}
59
60
>
60
61
{% for l in args.android_used_libs %}
61
62
<uses-library android : name =" {{ l }}" />
You can’t perform that action at this time.
0 commit comments