Skip to content

Commit 1763b43

Browse files
Android: Fix build command in standard AAB export
1 parent de463e0 commit 1763b43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

platform/android/export/export_plugin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3751,7 +3751,7 @@ Error EditorExportPlatformAndroid::export_project_helper(const Ref<EditorExportP
37513751
String edition = has_dotnet_project ? "Mono" : "Standard";
37523752
String build_type = p_debug ? "Debug" : "Release";
37533753
if (export_format == EXPORT_FORMAT_AAB) {
3754-
String bundle_build_command = vformat("bundle%s", build_type);
3754+
String bundle_build_command = vformat("bundle%s%s", edition, build_type);
37553755
cmdline.push_back(bundle_build_command);
37563756
} else if (export_format == EXPORT_FORMAT_APK) {
37573757
String apk_build_command = vformat("assemble%s%s", edition, build_type);

0 commit comments

Comments
 (0)