Skip to content

Commit 742c0b4

Browse files
author
minggo
authored
copy apk file from correct path (#432)
after using build tools 27.0.1, the output apk file path changed
1 parent 6482ba8 commit 742c0b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/plugin_compile/build_android.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,7 @@ def do_build_apk(self, build_mode, no_apk, output_dir, custom_step_args, android
583583
if project_name is None:
584584
# use default project name
585585
project_name = 'app'
586-
gen_apk_folder = os.path.join(self.app_android_root, 'app/build/outputs/apk')
586+
gen_apk_folder = os.path.join(self.app_android_root, 'app/build/outputs/apk', build_mode)
587587
else:
588588
assets_dir = os.path.join(self.app_android_root, "assets")
589589
project_name = self._xml_attr(self.app_android_root, 'build.xml', 'project', 'name')

0 commit comments

Comments
 (0)