diff --git a/platform/android/export/export_plugin.cpp b/platform/android/export/export_plugin.cpp index c28ba1c9d..1a2950c7e 100644 --- a/platform/android/export/export_plugin.cpp +++ b/platform/android/export/export_plugin.cpp @@ -2454,8 +2454,8 @@ void EditorExportPlatformAndroid::_update_custom_build_project() { append_line = true; } else { String base = l.substr(0, last_tag_pos + last_tag.length()); - if (manifest_sections.has("application_attribs")) { - for (List::Element *E = manifest_sections["application_attribs"].front(); E; E = E->next()) { + if (manifest_sections.has("APPLICATION_ATTRIBS")) { + for (List::Element *E = manifest_sections["APPLICATION_ATTRIBS"].front(); E; E = E->next()) { String to_add = E->get().strip_edges(); base += " " + to_add + " "; }