Skip to content

Commit 09ee2db

Browse files
wolfgangpAndreMiras
authored andcommitted
Fix apk argument parsing oversight (#1355)
1 parent 5382dc0 commit 09ee2db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythonforandroid/toolchain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -754,7 +754,7 @@ def apk(self, args):
754754
fix_args = ('--dir', '--private', '--add-jar', '--add-source',
755755
'--whitelist', '--blacklist', '--presplash', '--icon')
756756
unknown_args = args.unknown_args
757-
for i, arg in enumerate(unknown_args[:-1]):
757+
for i, arg in enumerate(unknown_args):
758758
argx = arg.split('=')
759759
if argx[0] in fix_args:
760760
if len(argx) > 1:

0 commit comments

Comments
 (0)