Skip to content

Commit 51df7f1

Browse files
committed
feat(apple): bump iOS/macOS deployment target to 15.1/12.0
BREAKING CHANGE: Minimum iOS and macOS versions have been bumped to 15.1 and 12.0 respectively
1 parent 96dc28d commit 51df7f1

File tree

7 files changed

+12
-27
lines changed

7 files changed

+12
-27
lines changed

example/Example-Tests.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ Pod::Spec.new do |s|
1111
s.source = { :git => package['repository']['url'] }
1212
s.summary = 'Example tests'
1313

14-
s.ios.deployment_target = '13.0'
15-
s.osx.deployment_target = '10.15'
14+
s.ios.deployment_target = '15.1'
15+
s.osx.deployment_target = '12.0'
1616
s.visionos.deployment_target = '1.0'
1717

1818
s.dependency 'React'

ios/ReactTestApp.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@
447447
BUNDLE_LOADER = "$(TEST_HOST)";
448448
CODE_SIGN_STYLE = Automatic;
449449
INFOPLIST_FILE = ReactTestAppTests/Info.plist;
450-
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
450+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
451451
LD_RUNPATH_SEARCH_PATHS = (
452452
"$(inherited)",
453453
"@executable_path/Frameworks",
@@ -468,7 +468,7 @@
468468
BUNDLE_LOADER = "$(TEST_HOST)";
469469
CODE_SIGN_STYLE = Automatic;
470470
INFOPLIST_FILE = ReactTestAppTests/Info.plist;
471-
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
471+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
472472
LD_RUNPATH_SEARCH_PATHS = (
473473
"$(inherited)",
474474
"@executable_path/Frameworks",

ios/ReactTestApp/ReactTestApp.common.xcconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ENABLE_USER_SCRIPT_SANDBOXING = NO
1212
GCC_C_LANGUAGE_STANDARD = gnu11
1313
GCC_NO_COMMON_BLOCKS = YES
1414
GCC_TREAT_WARNINGS_AS_ERRORS = YES
15-
IPHONEOS_DEPLOYMENT_TARGET = 14.0
15+
IPHONEOS_DEPLOYMENT_TARGET = 15.1
1616
MTL_FAST_MATH = YES
1717
OTHER_CFLAGS = $(inherited) -fstack-protector-strong
1818
OTHER_LDFLAGS = $(inherited) -fstack-protector-strong

ios/test_app.rb

+2-17
Original file line numberDiff line numberDiff line change
@@ -313,26 +313,11 @@ def make_project!(xcodeproj, project_root, target_platform, options)
313313
app_project.save
314314

315315
config = app_project.build_configurations[0]
316-
317-
# TODO: Deployment targets are bumped in 4.0. We should remove these blocks then.
318-
ios_deployment_target =
319-
if rn_version >= v(0, 76, 0)
320-
'15.1'
321-
else
322-
config.resolve_build_setting(IPHONEOS_DEPLOYMENT_TARGET)
323-
end
324-
macos_deployment_target =
325-
if rn_version >= v(0, 75, 0)
326-
'11.0'
327-
else
328-
config.resolve_build_setting(MACOSX_DEPLOYMENT_TARGET)
329-
end
330-
331316
{
332317
:xcodeproj_path => xcodeproj_dst,
333318
:platforms => {
334-
:ios => ios_deployment_target,
335-
:macos => macos_deployment_target,
319+
:ios => config.resolve_build_setting(IPHONEOS_DEPLOYMENT_TARGET),
320+
:macos => config.resolve_build_setting(MACOSX_DEPLOYMENT_TARGET),
336321
:visionos => config.resolve_build_setting(XROS_DEPLOYMENT_TARGET),
337322
},
338323
:react_native_version => rn_version,

macos/ReactTestApp.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@
441441
"@executable_path/../Frameworks",
442442
"@loader_path/../Frameworks",
443443
);
444-
MACOSX_DEPLOYMENT_TARGET = 10.15;
444+
MACOSX_DEPLOYMENT_TARGET = 12.0;
445445
PRODUCT_BUNDLE_IDENTIFIER = com.microsoft.ReactTestAppTests;
446446
PRODUCT_NAME = "$(TARGET_NAME)";
447447
SWIFT_VERSION = 5.0;
@@ -462,7 +462,7 @@
462462
"@executable_path/../Frameworks",
463463
"@loader_path/../Frameworks",
464464
);
465-
MACOSX_DEPLOYMENT_TARGET = 10.15;
465+
MACOSX_DEPLOYMENT_TARGET = 12.0;
466466
PRODUCT_BUNDLE_IDENTIFIER = com.microsoft.ReactTestAppTests;
467467
PRODUCT_NAME = "$(TARGET_NAME)";
468468
SWIFT_VERSION = 5.0;

macos/ReactTestApp/ReactTestApp.common.xcconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ENABLE_USER_SCRIPT_SANDBOXING = NO
1212
GCC_C_LANGUAGE_STANDARD = gnu11
1313
GCC_NO_COMMON_BLOCKS = YES
1414
GCC_TREAT_WARNINGS_AS_ERRORS = YES
15-
MACOSX_DEPLOYMENT_TARGET = 10.15
15+
MACOSX_DEPLOYMENT_TARGET = 12.0
1616
MTL_FAST_MATH = YES
1717
OTHER_CFLAGS = $(inherited) -fstack-protector-strong
1818
OTHER_LDFLAGS = $(inherited) -fstack-protector-strong

visionos/ReactTestApp.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@
431431
BUNDLE_LOADER = "$(TEST_HOST)";
432432
CODE_SIGN_STYLE = Automatic;
433433
INFOPLIST_FILE = ReactTestAppTests/Info.plist;
434-
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
434+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
435435
LD_RUNPATH_SEARCH_PATHS = (
436436
"$(inherited)",
437437
"@executable_path/Frameworks",
@@ -456,7 +456,7 @@
456456
BUNDLE_LOADER = "$(TEST_HOST)";
457457
CODE_SIGN_STYLE = Automatic;
458458
INFOPLIST_FILE = ReactTestAppTests/Info.plist;
459-
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
459+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
460460
LD_RUNPATH_SEARCH_PATHS = (
461461
"$(inherited)",
462462
"@executable_path/Frameworks",

0 commit comments

Comments
 (0)