diff options
author | Juan Linietsky <reduzio@gmail.com> | 2021-09-07 16:30:50 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-07 16:30:50 -0300 |
commit | 58388f8cec58dbe29bfc21d01eea25994c08d650 (patch) | |
tree | 0e01bc0161795cb456afa784cdeebcb01c459ea5 /platform/android/export | |
parent | 1eee73c26f236f57063806a7036b19d189d6322a (diff) | |
parent | 2daaf0fdc3e11a32f7f0c7767ae853cedfe29258 (diff) |
Merge pull request #47391 from Calinou/platform-feature-tags-lowercase
Make platform feature tag names lowercase
Diffstat (limited to 'platform/android/export')
-rw-r--r-- | platform/android/export/export_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/export/export_plugin.cpp b/platform/android/export/export_plugin.cpp index 6b4a326ba7..e5422a28af 100644 --- a/platform/android/export/export_plugin.cpp +++ b/platform/android/export/export_plugin.cpp @@ -2942,7 +2942,7 @@ Error EditorExportPlatformAndroid::export_project_helper(const Ref<EditorExportP void EditorExportPlatformAndroid::get_platform_features(List<String> *r_features) { r_features->push_back("mobile"); - r_features->push_back("Android"); + r_features->push_back("android"); } void EditorExportPlatformAndroid::resolve_platform_feature_priorities(const Ref<EditorExportPreset> &p_preset, Set<String> &p_features) { |