diff options
author | Fredia Huya-Kouadio <fhuya@fb.com> | 2022-10-05 08:24:50 -0700 |
---|---|---|
committer | Fredia Huya-Kouadio <fhuya@fb.com> | 2022-10-05 08:41:48 -0700 |
commit | 3178b042b39da63638eb673005bbfb99552492e6 (patch) | |
tree | 603f4ad7882111bef1a5d7a5d97a8a2e86f5fcdf /platform/android/SCsub | |
parent | 57ffc4d82c773a513c8d122d859f07759c8c7da3 (diff) |
Fix the gradle build configuration for the Android platform following https://github.com/godotengine/godot/pull/66242
Diffstat (limited to 'platform/android/SCsub')
-rw-r--r-- | platform/android/SCsub | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/platform/android/SCsub b/platform/android/SCsub index 9f5b8d8387..e4d04f1df9 100644 --- a/platform/android/SCsub +++ b/platform/android/SCsub @@ -53,10 +53,10 @@ else: print("WARN: Architecture not suitable for embedding into APK; keeping .so at \\bin") if lib_arch_dir != "": - if env.debug_features: - lib_type_dir = "debug" - elif env.dev_build: + if env.dev_build: lib_type_dir = "dev" + elif env.debug_features: + lib_type_dir = "debug" else: # Release lib_type_dir = "release" |