summaryrefslogtreecommitdiffstats
path: root/platform/android/export/export_plugin.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-11-10 21:56:35 +0100
committerRémi Verschelde <rverschelde@gmail.com>2023-11-10 21:56:35 +0100
commit17a18fad46d93e45992c26e7c069503df5042bab (patch)
treeefe1521d66cd3513b6664f13899390bca60d6d62 /platform/android/export/export_plugin.cpp
parent848f93f989641b6b093df428858d21fb20ee21f7 (diff)
parentdce2686e520f5e63797ec2d5bd52005e37c5577f (diff)
downloadredot-engine-17a18fad46d93e45992c26e7c069503df5042bab.tar.gz
Merge pull request #84720 from m4gr3d/fix_missing_gdextension_so_files
Remove Android specific abis from the export preset feature list
Diffstat (limited to 'platform/android/export/export_plugin.cpp')
-rw-r--r--platform/android/export/export_plugin.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/platform/android/export/export_plugin.cpp b/platform/android/export/export_plugin.cpp
index ffdca1e345..842381567c 100644
--- a/platform/android/export/export_plugin.cpp
+++ b/platform/android/export/export_plugin.cpp
@@ -1717,7 +1717,6 @@ void EditorExportPlatformAndroid::get_preset_features(const Ref<EditorExportPres
Vector<ABI> abis = get_enabled_abis(p_preset);
for (int i = 0; i < abis.size(); ++i) {
r_features->push_back(abis[i].arch);
- r_features->push_back(abis[i].abi);
}
}