mirror of
https://github.com/godotengine/godot
synced 2024-11-02 15:10:04 +00:00
Merge pull request #64912 from m4gr3d/fix_android_arch_mapping_main
Revert the architecture values update made to the Android export logic
This commit is contained in:
commit
1b8f2e20bf
1 changed files with 4 additions and 4 deletions
|
@ -588,9 +588,9 @@ zip_fileinfo EditorExportPlatformAndroid::get_zip_fileinfo() {
|
|||
|
||||
Vector<String> EditorExportPlatformAndroid::get_abis() {
|
||||
Vector<String> abis;
|
||||
abis.push_back("arm32");
|
||||
abis.push_back("arm64");
|
||||
abis.push_back("x86_32");
|
||||
abis.push_back("armeabi-v7a");
|
||||
abis.push_back("arm64-v8a");
|
||||
abis.push_back("x86");
|
||||
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";
|
||||
const bool is_default = abi == "arm64-v8a";
|
||||
r_options->push_back(ExportOption(PropertyInfo(Variant::BOOL, vformat("%s/%s", PNAME("architectures"), abi)), is_default));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue