diff options
author | Fredia Huya-Kouadio <fhuya@fb.com> | 2022-10-05 10:29:34 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-05 10:29:34 -0700 |
commit | 8afa178c6f663d1636723f9c53e2a3b15c5c42b8 (patch) | |
tree | 603f4ad7882111bef1a5d7a5d97a8a2e86f5fcdf /platform/android/SCsub | |
parent | 57ffc4d82c773a513c8d122d859f07759c8c7da3 (diff) | |
parent | 3178b042b39da63638eb673005bbfb99552492e6 (diff) |
Merge pull request #66935 from m4gr3d/fix_android_build_configuration
Fix the gradle build configuration for the Android platform
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" |