From 03e95b38de947cb73cda053ccd29faec9d7609d9 Mon Sep 17 00:00:00 2001 From: Mattermost Build Date: Fri, 6 Oct 2023 14:55:14 +0200 Subject: [PATCH] Set iOS minimum OS version requirement to 12.4 (#7588) (#7589) (cherry picked from commit 551f3cf596cee08c0d14233f83adf3afec156f66) Co-authored-by: Elias Nahum --- ios/Podfile | 2 +- ios/Podfile.lock | 4 ++-- patches/react-native+0.71.13.patch | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ios/Podfile b/ios/Podfile index 3920e968591..303f94d7831 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -63,7 +63,7 @@ post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| - config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.4' + config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.4' end end __apply_Xcode_12_5_M1_post_install_workaround(installer) diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 3925c109a28..08a8b7c8ef8 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -925,7 +925,7 @@ SPEC CHECKSUMS: RCTTypeSafety: ca004f1fe0b76f7936f7fe7dfd761a4386cf72f5 React: b27df2b1da30335cf1bf1909056c4e1c3a3603ae React-callinvoker: f2a69510d781d8226d51342a3cbe8a9b13573ea5 - React-Codegen: ba40903fcda35154f5b4350b62ab831e4ea1f174 + React-Codegen: 90eb4e8352b823234ee25adbe64233b2fc642aee React-Core: 0771d135beb41b14e0e2ee9238fda50df6f18b97 React-CoreModules: 0e081b26ab034992d6a60217fc35a83e8ad9b8ed React-cxxreact: 3ec43be907f4d818c5113e436d661836d1ab5aa9 @@ -999,6 +999,6 @@ SPEC CHECKSUMS: Yoga: 135109c9b8c5d1a8af3a58d21cd4c7aa7f3bf555 YogaKit: f782866e155069a2cca2517aafea43200b01fd5a -PODFILE CHECKSUM: 8c9b3133b62f3917cfe8e505f2a5dbd3fd882183 +PODFILE CHECKSUM: 25f07cb9e5eed8c84db8e8723000e8470c349058 COCOAPODS: 1.11.3 diff --git a/patches/react-native+0.71.13.patch b/patches/react-native+0.71.13.patch index 3896a280568..e66dbdba9bb 100644 --- a/patches/react-native+0.71.13.patch +++ b/patches/react-native+0.71.13.patch @@ -123,7 +123,7 @@ index 03e3a5c..f3ae5a1 100644 +module Helpers + class Constants + def self.min_ios_version_supported -+ return '13.4' ++ return '12.4' + end + end +end