From 89a501a3af4fef4c70fc861ab0888e01d5394ccf Mon Sep 17 00:00:00 2001 From: topjohnwu Date: Tue, 21 Aug 2018 00:31:41 +0800 Subject: [PATCH] Fix build scripts --- build.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.py b/build.py index 9ad384226..e64679fea 100755 --- a/build.py +++ b/build.py @@ -292,7 +292,7 @@ def zip_main(args): zip_with_msg(zipf, source, target) # APK - source = os.path.join(config['outdir'], 'app-release.apk' if args.release else 'app-debug.apk') + source = os.path.join(config['outdir'], 'app-full-release.apk' if args.release else 'app-full-debug.apk') target = os.path.join('common', 'magisk.apk') zip_with_msg(zipf, source, target) @@ -391,7 +391,7 @@ def cleanup(args): def build_all(args): vars(args)['target'] = [] build_stub(args) - build_apk(args, 'Full') + build_app(args) build_binary(args) zip_main(args) zip_uninstaller(args)