File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ fullscreen = 0
149
149
150
150
# (str) Extra xml to write directly inside the <manifest><application> element of AndroidManifest.xml
151
151
# use that parameter to provide a filename from where to load your custom XML code
152
- #android.extra_manifest_application_entry = ./src/android/extra_manifest_application_entry .xml
152
+ #android.extra_manifest_application_xml = ./src/android/extra_manifest_application_xml .xml
153
153
154
154
# (str) Extra xml to write directly inside the <manifest><application> tag of AndroidManifest.xml
155
155
# use that parameter to provide a filename from where to load your custom XML arguments:
Original file line number Diff line number Diff line change @@ -956,10 +956,10 @@ def execute_build_package(self, build_cmd):
956
956
cmd .append ('--extra-manifest-xml="{}"' .format (open (extra_manifest_xml , 'rt' ).read ()))
957
957
958
958
# support for extra-manifest-application
959
- extra_manifest_application_entry = self .buildozer .config .getdefault (
960
- 'app' , 'android.extra_manifest_application_entry ' , '' )
961
- if extra_manifest_application_entry :
962
- cmd .append ('--extra-manifest-application-entry ="{}"' .format (open (extra_manifest_application_entry , 'rt' ).read ().replace ('"' , '\\ "' )))
959
+ extra_manifest_application_xml = self .buildozer .config .getdefault (
960
+ 'app' , 'android.extra_manifest_application_xml ' , '' )
961
+ if extra_manifest_application_xml :
962
+ cmd .append ('--extra-manifest-application-xml ="{}"' .format (open (extra_manifest_application_xml , 'rt' ).read ().replace ('"' , '\\ "' )))
963
963
964
964
# support for extra-manifest-application-arguments
965
965
extra_manifest_application_arguments = self .buildozer .config .getdefault (
You can’t perform that action at this time.
0 commit comments