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

Add linux-bionic RID Export Option

Adds an export option to enable the linux-bionic RID so Android can export with NativeAOT enabled.
This commit is contained in:
Justin Sasso
2024-10-06 20:16:01 -04:00
parent 71d80b26a4
commit 8a4bc9881f
4 changed files with 55 additions and 8 deletions

View File

@@ -2058,6 +2058,9 @@ bool EditorExportPlatformAndroid::get_export_option_visibility(const EditorExpor
return false;
}
if (p_option == "dotnet/android_use_linux_bionic") {
return advanced_options_enabled;
}
return true;
}