1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-08 12:40:44 +00:00

Enable native debug symbols generation

This commit is contained in:
Fredia Huya-Kouadio
2025-04-20 15:02:59 -07:00
parent 2d3bdcac35
commit 8a514ae56f
5 changed files with 35 additions and 22 deletions

View File

@@ -34,8 +34,13 @@ def get_opts():
"android-" + str(get_min_target_api()),
),
BoolVariable("store_release", "Editor build for Google Play Store (for official builds only)", False),
BoolVariable("generate_apk", "Generate an APK/AAB after building Android library by calling Gradle", False),
BoolVariable(
"generate_android_binaries",
"Generate APK, AAB & AAR binaries after building Android library by calling Gradle",
False,
),
BoolVariable("swappy", "Use Swappy Frame Pacing library", False),
BoolVariable("gradle_do_not_strip", "Whether Gradle should strip the Android *.so libraries or not", False),
]