瀏覽代碼

Merge pull request #69024 from Gromph/3.x-fix-exporting-android-application_attribs

fix exporting Android APPLICATION_ATTRIBS (3.X)
Rémi Verschelde 2 年之前
父節點
當前提交
429225ce55
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      platform/android/export/export_plugin.cpp

+ 2 - 2
platform/android/export/export_plugin.cpp

@@ -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 + " ";
 								}