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 8350dfd commit 214047fCopy full SHA for 214047f
pythonforandroid/bootstraps/common/build/build.py
@@ -837,6 +837,9 @@ def _read_configuration():
837
if args.permissions and isinstance(args.permissions[0], list):
838
args.permissions = [p for perm in args.permissions for p in perm]
839
840
+ if args.res_xmls and isinstance(args.res_xmls[0], list):
841
+ args.res_xmls = [x for res in args.res_xmls for x in res]
842
+
843
if args.try_system_python_compile:
844
# Hardcoding python2.7 is okay for now, as python3 skips the
845
# compilation anyway
0 commit comments