diff --git a/README.md b/README.md index 70ddae81..71e29229 100644 --- a/README.md +++ b/README.md @@ -282,6 +282,9 @@ See the [example app](https://github.com/intercom/intercom-react-native/blob/mai ### IOS +Intercom for iOS requires a **minimum iOS version of 15.** + + ```sh cd ios pod install diff --git a/example/ios/IntercomReactNativeExample.xcodeproj/project.pbxproj b/example/ios/IntercomReactNativeExample.xcodeproj/project.pbxproj index b06a3eeb..e1ce149d 100644 --- a/example/ios/IntercomReactNativeExample.xcodeproj/project.pbxproj +++ b/example/ios/IntercomReactNativeExample.xcodeproj/project.pbxproj @@ -450,7 +450,7 @@ CURRENT_PROJECT_VERSION = 1; ENABLE_BITCODE = NO; INFOPLIST_FILE = IntercomReactNativeExample/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -485,7 +485,7 @@ CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_TEAM = ""; INFOPLIST_FILE = IntercomReactNativeExample/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 15.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", diff --git a/example/ios/Podfile b/example/ios/Podfile index 002d606b..6575e288 100644 --- a/example/ios/Podfile +++ b/example/ios/Podfile @@ -1,7 +1,7 @@ require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' require_relative '../node_modules/react-native/scripts/react_native_pods' -platform :ios, '13.0' +platform :ios, '15.0' target 'IntercomReactNativeExample' do config = use_native_modules! @@ -28,7 +28,7 @@ target 'IntercomReactNativeExample' do installer.aggregate_targets.each do |aggregate_target| aggregate_target.user_project.native_targets.each do |target| target.build_configurations.each do |config| - config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0' + config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0' config.build_settings['LIBRARY_SEARCH_PATHS'] = ['$(SDKROOT)/usr/lib/swift', '$(inherited)'] end end diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index bb7e799b..d31ea249 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -73,9 +73,9 @@ PODS: - FlipperKit/FlipperKitNetworkPlugin - fmt (6.2.1) - glog (0.3.5) - - Intercom (16.5.9) - - intercom-react-native (6.6.0): - - Intercom (~> 16.5.9) + - Intercom (17.0.0) + - intercom-react-native (7.0.0): + - Intercom (~> 17.0.0) - React-Core - libevent (2.1.12) - OpenSSL-Universal (1.1.1100) @@ -533,8 +533,8 @@ SPEC CHECKSUMS: FlipperKit: cbdee19bdd4e7f05472a66ce290f1b729ba3cb86 fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9 glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b - Intercom: d9c81b3e45e6ecd9b2db2dc188d0521a40393f56 - intercom-react-native: 4f1166b40dd470211521a55893a4957614cccfd5 + Intercom: 558a47a197e619a9f16411e133bc2c57a27e6fbb + intercom-react-native: d599994cb9309a146af32910cc3ff1abf968a837 libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913 OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c RCT-Folly: 0080d0a6ebf2577475bda044aa59e2ca1f909cda @@ -569,6 +569,6 @@ SPEC CHECKSUMS: Yoga: dc109b79db907f0f589fc423e991b09ec42d2295 YogaKit: f782866e155069a2cca2517aafea43200b01fd5a -PODFILE CHECKSUM: a7cafffdaddc0dfe4e20cc0d2b857d47f9bcf58b +PODFILE CHECKSUM: 5b73a3a6016c3b2a7e9c6110204bbbc9a99a9f81 -COCOAPODS: 1.12.1 +COCOAPODS: 1.15.2 diff --git a/intercom-react-native.podspec b/intercom-react-native.podspec index 0baa2c2f..eac1c142 100644 --- a/intercom-react-native.podspec +++ b/intercom-react-native.podspec @@ -10,12 +10,12 @@ Pod::Spec.new do |s| s.license = package["license"] s.authors = package["author"] - s.platforms = { :ios => "13.0" } + s.platforms = { :ios => "15.0" } s.source = { :git => "https://github.com/intercom/intercom-react-native.git", :tag => "#{s.version}" } s.source_files = "ios/**/*.{h,m,mm}" s.resource_bundles = { 'IntercomFramework' => ['ios/assets/*'] } s.dependency "React-Core" - s.dependency "Intercom", '~> 16.5.9' + s.dependency "Intercom", '~> 17.0.0' end diff --git a/package.json b/package.json index 3dfc184f..abd3f788 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@intercom/intercom-react-native", - "version": "6.8.1", + "version": "7.0.0", "description": "React Native wrapper to bridge our iOS and Android SDK", "main": "lib/commonjs/index", "module": "lib/module/index",