Skip to content

Commit

Permalink
bump required versions for objC examples
Browse files Browse the repository at this point in the history
due to protobuf bumping their required versions here: protocolbuffers/protobuf#10652
  • Loading branch information
jtattermusch committed Apr 11, 2023
1 parent d3929c5 commit 4acdc86
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/objective-c/examples/InterceptorSample/Podfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
platform :ios, '9.0'
platform :ios, '10.0'

install! 'cocoapods', :deterministic_uuids => false

Expand Down
8 changes: 4 additions & 4 deletions src/objective-c/examples/RemoteTestClient/RemoteTest.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/objective-c/examples/Sample/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
platform :ios, '10.0'

install! 'cocoapods', :deterministic_uuids => false

Expand Down
2 changes: 1 addition & 1 deletion src/objective-c/examples/SwiftSample/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
platform :ios, '10.0'

install! 'cocoapods', :deterministic_uuids => false

Expand Down
4 changes: 2 additions & 2 deletions src/objective-c/examples/watchOS-sample/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 4acdc86

Please sign in to comment.