Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion platform/android/detect.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ def get_opts():
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),
]


Expand Down
2 changes: 1 addition & 1 deletion platform/android/platform_android_builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def generate_android_binaries(target, source, env):
gradle_process += ["generateGodotTemplates"]
gradle_process += ["--quiet"]

if env["gradle_do_not_strip"]:
if env["debug_symbols"] and not env["separate_debug_symbols"]:
gradle_process += ["-PdoNotStrip=true"]

subprocess.run(
Expand Down