From 31b11e53171155e5a470bce963bf3d51f392a1d2 Mon Sep 17 00:00:00 2001 From: Benoit Martins Date: Thu, 1 Jun 2023 15:43:29 +0200 Subject: [PATCH] Change IPHONEOS_DEPLOYMENT_TARGET to 11.2 in Podfile --- Podfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Podfile b/Podfile index 723b6e2b0..a0dd5c69d 100644 --- a/Podfile +++ b/Podfile @@ -101,7 +101,7 @@ post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| - config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0' + config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.2' end end end