Fix the gradle build configuration for the Android platform following https://github.com/godotengine/godot/pull/66242

This commit is contained in:
Fredia Huya-Kouadio
2022-10-05 08:24:50 -07:00
parent 57ffc4d82c
commit 3178b042b3
3 changed files with 42 additions and 38 deletions

View File

@@ -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"