From 4acdc862c4c7e4d4f48464a2bc2f9c11e515b96b Mon Sep 17 00:00:00 2001 From: Jan Tattermusch Date: Tue, 4 Apr 2023 09:19:33 +0200 Subject: [PATCH] bump required versions for objC examples due to protobuf bumping their required versions here: https://github.com/protocolbuffers/protobuf/pull/10652 --- src/objective-c/examples/InterceptorSample/Podfile | 2 +- .../examples/RemoteTestClient/RemoteTest.podspec | 8 ++++---- src/objective-c/examples/Sample/Podfile | 2 +- src/objective-c/examples/SwiftSample/Podfile | 2 +- src/objective-c/examples/watchOS-sample/Podfile | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/objective-c/examples/InterceptorSample/Podfile b/src/objective-c/examples/InterceptorSample/Podfile index 2ddcbd4f7b09c..6f5c5ab002dcf 100644 --- a/src/objective-c/examples/InterceptorSample/Podfile +++ b/src/objective-c/examples/InterceptorSample/Podfile @@ -1,4 +1,4 @@ -platform :ios, '9.0' +platform :ios, '10.0' install! 'cocoapods', :deterministic_uuids => false diff --git a/src/objective-c/examples/RemoteTestClient/RemoteTest.podspec b/src/objective-c/examples/RemoteTestClient/RemoteTest.podspec index cf5cdef91c394..ddd04560c0dcf 100644 --- a/src/objective-c/examples/RemoteTestClient/RemoteTest.podspec +++ b/src/objective-c/examples/RemoteTestClient/RemoteTest.podspec @@ -7,10 +7,10 @@ Pod::Spec.new do |s| s.summary = 'RemoteTest example' s.source = { :git => 'https://github.com/grpc/grpc.git' } - s.ios.deployment_target = '9.0' - s.osx.deployment_target = '10.10' - s.tvos.deployment_target = '10.0' - s.watchos.deployment_target = '4.0' + s.ios.deployment_target = '10.0' + s.osx.deployment_target = '10.12' + s.tvos.deployment_target = '12.0' + s.watchos.deployment_target = '6.0' # Run protoc with the Objective-C and gRPC plugins to generate protocol messages and gRPC clients. s.dependency "!ProtoCompiler-gRPCPlugin" diff --git a/src/objective-c/examples/Sample/Podfile b/src/objective-c/examples/Sample/Podfile index 14184d49f636c..eb6387edcedb2 100644 --- a/src/objective-c/examples/Sample/Podfile +++ b/src/objective-c/examples/Sample/Podfile @@ -1,5 +1,5 @@ source 'https://github.com/CocoaPods/Specs.git' -platform :ios, '9.0' +platform :ios, '10.0' install! 'cocoapods', :deterministic_uuids => false diff --git a/src/objective-c/examples/SwiftSample/Podfile b/src/objective-c/examples/SwiftSample/Podfile index abe5adcca735f..07c8863ba2993 100644 --- a/src/objective-c/examples/SwiftSample/Podfile +++ b/src/objective-c/examples/SwiftSample/Podfile @@ -1,5 +1,5 @@ source 'https://github.com/CocoaPods/Specs.git' -platform :ios, '9.0' +platform :ios, '10.0' install! 'cocoapods', :deterministic_uuids => false diff --git a/src/objective-c/examples/watchOS-sample/Podfile b/src/objective-c/examples/watchOS-sample/Podfile index 0de6e71a2537b..4898a239a36a8 100644 --- a/src/objective-c/examples/watchOS-sample/Podfile +++ b/src/objective-c/examples/watchOS-sample/Podfile @@ -14,11 +14,11 @@ def grpc_deps end target 'watchOS-sample' do -platform :ios, '9.0' +platform :ios, '10.0' grpc_deps end target 'watchOS-sample WatchKit Extension' do -platform :watchos, '4.0' +platform :watchos, '6.0' grpc_deps end