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 31cbc2e commit 7e72059Copy full SHA for 7e72059
pythonforandroid/bootstraps/common/build/build.py
@@ -911,6 +911,9 @@ def _read_configuration():
911
if args.permissions and isinstance(args.permissions[0], list):
912
args.permissions = [p for perm in args.permissions for p in perm]
913
914
+ if args.res_xmls and isinstance(args.res_xmls[0], list):
915
+ args.res_xmls = [x for res in args.res_xmls for x in res]
916
+
917
if args.try_system_python_compile:
918
# Hardcoding python2.7 is okay for now, as python3 skips the
919
# compilation anyway
0 commit comments