We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a52bc60 commit 45c23cfCopy full SHA for 45c23cf
buildozer/targets/android.py
@@ -948,7 +948,7 @@ def execute_build_package(self, build_cmd):
948
extra_manifest_application_xml = self.buildozer.config.getdefault(
949
'app', 'android.extra_manifest_application_xml', '')
950
if extra_manifest_application_xml:
951
- cmd.append('--extra-manifest-application-xml="{}"'.format(open(extra_manifest_application_xml, 'rt').read().replace('"', '\\"')))
+ cmd.append('--extra-manifest-application-xml={}'.format(open(extra_manifest_application_xml, 'rt').read()))
952
953
# support for extra-manifest-application-arguments
954
extra_manifest_application_arguments = self.buildozer.config.getdefault(
0 commit comments