From 55ac3382490874a2c2acf30cecc569ed6629777c Mon Sep 17 00:00:00 2001 From: Thomas Van Lenten Date: Tue, 10 Nov 2020 10:05:50 -0500 Subject: [PATCH] Bump the podspec iOS min to 9.0 Xcode 12+ issue a warning when targeting older iOS versions, so avoid the issue. #7980 updated the Xcode projects already. --- Protobuf.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Protobuf.podspec b/Protobuf.podspec index 01a97725e5..d05b91bf7a 100644 --- a/Protobuf.podspec +++ b/Protobuf.podspec @@ -34,7 +34,7 @@ Pod::Spec.new do |s| s.user_target_xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1' } s.pod_target_xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS=1' } - s.ios.deployment_target = '7.0' + s.ios.deployment_target = '9.0' s.osx.deployment_target = '10.9' s.tvos.deployment_target = '9.0' s.watchos.deployment_target = '2.0'