File tree 2 files changed +4
-0
lines changed
pythonforandroid/bootstraps
2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -844,6 +844,9 @@ def parse_args_and_make_package(args=None):
844
844
ap .add_argument ('--extra-manifest-application-arguments' , default = '' ,
845
845
help = 'Extra arguments to be added to the <manifest><application> tag of'
846
846
'AndroidManifest.xml' )
847
+ ap .add_argument ('--extra-manifest-application-xml' , default = '' ,
848
+ help = 'Extra xml to write directly inside the <application> element of'
849
+ 'AndroidManifest.xml' )
847
850
ap .add_argument ('--manifest-placeholders' , dest = 'manifest_placeholders' ,
848
851
default = '[:]' , help = ('Inject build variables into the manifest '
849
852
'via the manifestPlaceholders property' ))
Original file line number Diff line number Diff line change 141
141
{% for a in args.add_activity %}
142
142
<activity android : name =" {{ a }}" ></activity >
143
143
{% endfor %}
144
+ {{ args.extra_manifest_application_xml }}
144
145
</application >
145
146
146
147
</manifest >
You can’t perform that action at this time.
0 commit comments