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 3b1d27e commit 39b70e2Copy full SHA for 39b70e2
plugins/plugin_compile/build_android.py
@@ -447,7 +447,10 @@ def _get_build_type(self, param_of_appabi):
447
return self._do_get_build_type(param_of_appabi)
448
449
# get build type from Application.mk
450
- applicationmk_path = os.path.join(self.app_android_root, "jni/Application.mk")
+ if self.use_studio:
451
+ applicationmk_path = os.path.join(self.app_android_root, "app/jni/Application.mk")
452
+ else:
453
+ applicationmk_path = os.path.join(self.app_android_root, "jni/Application.mk")
454
with open(applicationmk_path) as f:
455
for line in f:
456
if line.find('APP_ABI') == -1:
0 commit comments