Merge pull request #93551 from m4gr3d/show_android_custom_template_by_default

Android: Revert hiding of custom templates under the `Advanced Options` toggle
This commit is contained in:
Rémi Verschelde 2024-06-24 17:49:10 +02:00
commit 2ac72b7402
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -1920,7 +1920,7 @@ bool EditorExportPlatformAndroid::get_export_option_visibility(const EditorExpor
}
if (p_option == "custom_template/debug" || p_option == "custom_template/release") {
// The APK templates are ignored if Gradle build is enabled.
return advanced_options_enabled && !bool(p_preset->get("gradle_build/use_gradle_build"));
return !bool(p_preset->get("gradle_build/use_gradle_build"));
}
// Hide .NET embedding option (always enabled).