|
@@ -3406,6 +3406,7 @@ Error EditorExportPlatformAndroid::export_project_helper(const Ref<EditorExportP
|
|
|
}
|
|
|
|
|
|
String addons_directory = ProjectSettings::get_singleton()->globalize_path("res://addons");
|
|
|
+ String current_renderer = GLOBAL_GET("rendering/renderer/rendering_method.mobile");
|
|
|
|
|
|
cmdline.push_back("-p"); // argument to specify the start directory.
|
|
|
cmdline.push_back(build_path); // start directory.
|
|
@@ -3423,6 +3424,7 @@ Error EditorExportPlatformAndroid::export_project_helper(const Ref<EditorExportP
|
|
|
cmdline.push_back("-Pperform_signing=" + sign_flag); // argument to specify whether the build should be signed.
|
|
|
cmdline.push_back("-Pcompress_native_libraries=" + compress_native_libraries_flag); // argument to specify whether the build should compress native libraries.
|
|
|
cmdline.push_back("-Pgodot_editor_version=" + String(VERSION_FULL_CONFIG));
|
|
|
+ cmdline.push_back("-Pgodot_rendering_method=" + current_renderer);
|
|
|
|
|
|
// NOTE: The release keystore is not included in the verbose logging
|
|
|
// to avoid accidentally leaking sensitive information when sharing verbose logs for troubleshooting.
|