diff --git a/platform/iphone/export/export.cpp b/platform/iphone/export/export.cpp index 82c9508fdbb..4f4439bc607 100644 --- a/platform/iphone/export/export.cpp +++ b/platform/iphone/export/export.cpp @@ -219,7 +219,7 @@ void EditorExportPlatformIOS::get_preset_features(const Ref Vector EditorExportPlatformIOS::_get_supported_architectures() { Vector archs; - archs.push_back(ExportArchitecture("armv7", true)); + archs.push_back(ExportArchitecture("armv7", false)); // Disabled by default, not included in official templates. archs.push_back(ExportArchitecture("arm64", true)); return archs; }