File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
pythonforandroid/bootstraps Expand file tree Collapse file tree 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):
844844 ap .add_argument ('--extra-manifest-application-arguments' , default = '' ,
845845 help = 'Extra arguments to be added to the <manifest><application> tag of'
846846 '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' )
847850 ap .add_argument ('--manifest-placeholders' , dest = 'manifest_placeholders' ,
848851 default = '[:]' , help = ('Inject build variables into the manifest '
849852 'via the manifestPlaceholders property' ))
Original file line number Diff line number Diff line change 141141 {% for a in args.add_activity %}
142142 <activity android : name =" {{ a }}" ></activity >
143143 {% endfor %}
144+ {{ args.extra_manifest_application_xml }}
144145 </application >
145146
146147</manifest >
You can’t perform that action at this time.
0 commit comments