We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de463e0 commit 1763b43Copy full SHA for 1763b43
platform/android/export/export_plugin.cpp
@@ -3751,7 +3751,7 @@ Error EditorExportPlatformAndroid::export_project_helper(const Ref<EditorExportP
3751
String edition = has_dotnet_project ? "Mono" : "Standard";
3752
String build_type = p_debug ? "Debug" : "Release";
3753
if (export_format == EXPORT_FORMAT_AAB) {
3754
- String bundle_build_command = vformat("bundle%s", build_type);
+ String bundle_build_command = vformat("bundle%s%s", edition, build_type);
3755
cmdline.push_back(bundle_build_command);
3756
} else if (export_format == EXPORT_FORMAT_APK) {
3757
String apk_build_command = vformat("assemble%s%s", edition, build_type);
0 commit comments