This commit is contained in:
Fredia Huya-Kouadio
2026-01-19 14:14:14 -08:00
parent 5f9a510441
commit 7bebe1b1b1
3 changed files with 24 additions and 2 deletions

View File

@@ -1037,8 +1037,11 @@ void EditorExportPlatformAndroid::_write_tmp_manifest(const Ref<EditorExportPres
if (export_plugins[i]->supports_platform(Ref<EditorExportPlatform>(this))) {
const String contents = export_plugins[i]->get_android_manifest_element_contents(Ref<EditorExportPlatform>(this), p_debug);
if (!contents.is_empty()) {
const String export_plugin_name = export_plugins[i]->get_name();
manifest_text += "<!-- Start of manifest element contents from " + export_plugin_name + " -->\n";
manifest_text += contents;
manifest_text += "\n";
manifest_text += "<!-- End of manifest element contents from " + export_plugin_name + " -->\n";
}
}
}