diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-08-25 13:03:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-25 13:03:48 +0200 |
commit | c7eb423eeb5455419bb96fc1ed8e8e121c2a619a (patch) | |
tree | cdf84e433facaefd1ed6689f0619aa1e0bcf3eba /platform/android/export/export_plugin.cpp | |
parent | 8769088f48a9acc7a28a55ceeba86cdcd6ba3a42 (diff) | |
parent | 27b0f182758db5d2d4c123c81430c34941161b39 (diff) | |
download | redot-engine-c7eb423eeb5455419bb96fc1ed8e8e121c2a619a.tar.gz |
Merge pull request #55778 from aaronfranke/use-arch-btw
[skip ci]
Diffstat (limited to 'platform/android/export/export_plugin.cpp')
-rw-r--r-- | platform/android/export/export_plugin.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/platform/android/export/export_plugin.cpp b/platform/android/export/export_plugin.cpp index 685b1f01af..016af40b52 100644 --- a/platform/android/export/export_plugin.cpp +++ b/platform/android/export/export_plugin.cpp @@ -588,9 +588,9 @@ zip_fileinfo EditorExportPlatformAndroid::get_zip_fileinfo() { Vector<String> EditorExportPlatformAndroid::get_abis() { Vector<String> abis; - abis.push_back("armeabi-v7a"); - abis.push_back("arm64-v8a"); - abis.push_back("x86"); + abis.push_back("arm32"); + abis.push_back("arm64"); + abis.push_back("x86_32"); abis.push_back("x86_64"); return abis; } @@ -1710,7 +1710,7 @@ void EditorExportPlatformAndroid::get_export_options(List<ExportOption> *r_optio const String abi = abis[i]; // All Android devices supporting Vulkan run 64-bit Android, // so there is usually no point in exporting for 32-bit Android. - const bool is_default = abi == "arm64-v8a"; + const bool is_default = abi == "arm64"; r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, vformat("%s/%s", PNAME("architectures"), abi)), is_default)); } |