Skip to content

Commit e1d591f

Browse files
committed
Updated to Xcode 14
1 parent ac4b6b2 commit e1d591f

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2.1
33
# Default VM config to be used for macOS builds
44
macos_config: &macos_config
55
macos:
6-
xcode: 12.5.0
6+
xcode: 14.0.0
77
resource_class: macos.x86.medium.gen2
88
shell: /bin/bash --login -eo pipefail
99

example/e2e/wdio.ios.conf.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ exports.config = {
1212
browserName: '',
1313
automationName: 'XCUITest',
1414
platformName: 'iOS',
15-
platformVersion: '14.5',
16-
deviceName: 'iPhone 8',
15+
platformVersion: '16.0',
16+
deviceName: 'iPhone 14',
1717
app: 'build/Build/Products/Release-iphonesimulator/IntercomReactNativeExampleUI.app',
1818
},
1919
],

example/ios/IntercomReactNativeExample.xcodeproj/project.pbxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -450,6 +450,7 @@
450450
CURRENT_PROJECT_VERSION = 1;
451451
ENABLE_BITCODE = NO;
452452
INFOPLIST_FILE = IntercomReactNativeExample/Info.plist;
453+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
453454
LD_RUNPATH_SEARCH_PATHS = (
454455
"$(inherited)",
455456
"@executable_path/Frameworks",
@@ -484,6 +485,7 @@
484485
CURRENT_PROJECT_VERSION = 1;
485486
DEVELOPMENT_TEAM = "";
486487
INFOPLIST_FILE = IntercomReactNativeExample/Info.plist;
488+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
487489
LD_RUNPATH_SEARCH_PATHS = (
488490
"$(inherited)",
489491
"@executable_path/Frameworks",
@@ -517,6 +519,7 @@
517519
CURRENT_PROJECT_VERSION = 1;
518520
ENABLE_BITCODE = NO;
519521
INFOPLIST_FILE = IntercomReactNativeExample/Info.plist;
522+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
520523
LD_RUNPATH_SEARCH_PATHS = (
521524
"$(inherited)",
522525
"@executable_path/Frameworks",
@@ -551,6 +554,7 @@
551554
CURRENT_PROJECT_VERSION = 1;
552555
DEVELOPMENT_TEAM = "";
553556
INFOPLIST_FILE = IntercomReactNativeExample/Info.plist;
557+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
554558
LD_RUNPATH_SEARCH_PATHS = (
555559
"$(inherited)",
556560
"@executable_path/Frameworks",

example/ios/Podfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ target 'IntercomReactNativeExample' do
2828
installer.aggregate_targets.each do |aggregate_target|
2929
aggregate_target.user_project.native_targets.each do |target|
3030
target.build_configurations.each do |config|
31+
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
3132
config.build_settings['LIBRARY_SEARCH_PATHS'] = ['$(SDKROOT)/usr/lib/swift', '$(inherited)']
3233
end
3334
end
@@ -40,7 +41,7 @@ target 'IntercomReactNativeExample' do
4041
target.build_configurations.each do |config|
4142
# Setting deployment target to iOS 11 for RCT-Folly to avoid errors with Flipper.
4243
if ['RCT-Folly'].include? target.name
43-
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
44+
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
4445
end
4546
config.build_settings['GCC_WARN_INHIBIT_ALL_WARNINGS'] = 'YES'
4647
end

example/ios/Podfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,6 +535,6 @@ SPEC CHECKSUMS:
535535
Yoga: aa0cb45287ebe1004c02a13f279c55a95f1572f4
536536
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
537537

538-
PODFILE CHECKSUM: 1d6700a56b42f5d113c60bf174c5b9390544aece
538+
PODFILE CHECKSUM: 7e198f58bc2fd034851e1ce323d54fc55ce8fd2f
539539

540540
COCOAPODS: 1.11.3

0 commit comments

Comments
 (0)