From ebb82fea7a39c7fd86ee7adc9a452b26799baac0 Mon Sep 17 00:00:00 2001 From: Ryan Pessa Date: Mon, 25 Jan 2016 13:36:53 -0600 Subject: [PATCH] fix more path arguments --- pythonforandroid/toolchain.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pythonforandroid/toolchain.py b/pythonforandroid/toolchain.py index adb6e3b9ff..25232ade2b 100755 --- a/pythonforandroid/toolchain.py +++ b/pythonforandroid/toolchain.py @@ -539,7 +539,8 @@ def apk(self, args): # unsatisfactory and should probably be changed somehow, but # we can't leave it until later as the build.py scripts assume # they are in the current directory. - fix_args = ('--dir', '--private', '--add-jar', '--add-source') + fix_args = ('--dir', '--private', '--add-jar', '--add-source', + '--whitelist', '--blacklist', '--presplash', '--icon') for i, arg in enumerate(args[:-1]): argx = arg.split('=') if argx[0] in fix_args: