Skip to content

Commit 40c0f44

Browse files
authored
fix(cli): plugin iOS Xcode project deployment target should be 13.0 (#9971)
1 parent f955f7b commit 40c0f44

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"tauri-cli": patch:bug
3+
"@tauri-apps/cli": patch:bug
4+
---
5+
6+
Changed the deployment target of plugin iOS Xcode project to 13.0 so it works on older iOS releases.

tooling/cli/templates/plugin/ios-xcode/tauri-plugin-{{ plugin_name }}.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@
187187
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
188188
GCC_WARN_UNUSED_FUNCTION = YES;
189189
GCC_WARN_UNUSED_VARIABLE = YES;
190-
IPHONEOS_DEPLOYMENT_TARGET = 17.5;
190+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
191191
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
192192
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
193193
MTL_FAST_MATH = YES;
@@ -244,7 +244,7 @@
244244
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
245245
GCC_WARN_UNUSED_FUNCTION = YES;
246246
GCC_WARN_UNUSED_VARIABLE = YES;
247-
IPHONEOS_DEPLOYMENT_TARGET = 17.5;
247+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
248248
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
249249
MTL_ENABLE_DEBUG_INFO = NO;
250250
MTL_FAST_MATH = YES;

0 commit comments

Comments
 (0)