Android: Fix build command in standard AAB export

This commit is contained in:
Anish Mishra 2025-08-14 17:13:21 +05:30 committed by GitHub
parent de463e0241
commit 1763b43dca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3751,7 +3751,7 @@ Error EditorExportPlatformAndroid::export_project_helper(const Ref<EditorExportP
String edition = has_dotnet_project ? "Mono" : "Standard";
String build_type = p_debug ? "Debug" : "Release";
if (export_format == EXPORT_FORMAT_AAB) {
String bundle_build_command = vformat("bundle%s", build_type);
String bundle_build_command = vformat("bundle%s%s", edition, build_type);
cmdline.push_back(bundle_build_command);
} else if (export_format == EXPORT_FORMAT_APK) {
String apk_build_command = vformat("assemble%s%s", edition, build_type);