Skip to content

Commit

Permalink
Merge pull request #69024 from Gromph/3.x-fix-exporting-android-appli…
Browse files Browse the repository at this point in the history
…cation_attribs

fix exporting Android APPLICATION_ATTRIBS (3.X)
  • Loading branch information
akien-mga committed Nov 24, 2022
2 parents cb0b20b + d789ad4 commit 429225c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions platform/android/export/export_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2577,8 +2577,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<String>::Element *E = manifest_sections["application_attribs"].front(); E; E = E->next()) {
if (manifest_sections.has("APPLICATION_ATTRIBS")) {
for (List<String>::Element *E = manifest_sections["APPLICATION_ATTRIBS"].front(); E; E = E->next()) {
String to_add = E->get().strip_edges();
base += " " + to_add + " ";
}
Expand Down

0 comments on commit 429225c

Please sign in to comment.