xref: /aosp_15_r20/external/grpc-grpc/src/objective-c/examples/watchOS-sample/Podfile (revision cc02d7e222339f7a4f6ba5f422e6413f4bd931f2)
1install! 'cocoapods', :deterministic_uuids => false
2
3ROOT_DIR = '../../../..'
4
5def grpc_deps
6  pod 'gRPC-ProtoRPC', :path => ROOT_DIR
7  pod 'gRPC', :path => ROOT_DIR
8  pod 'gRPC-Core', :path => ROOT_DIR
9  pod 'gRPC-RxLibrary', :path => ROOT_DIR
10  pod 'RemoteTest', :path => "../RemoteTestClient"
11  pod '!ProtoCompiler-gRPCPlugin', :path => "#{ROOT_DIR}/src/objective-c"
12  pod 'BoringSSL-GRPC', :podspec => "#{ROOT_DIR}/src/objective-c"
13  pod '!ProtoCompiler', :path => "#{ROOT_DIR}/src/objective-c"
14end
15
16target 'watchOS-sample' do
17platform :ios, '10.0'
18  grpc_deps
19end
20
21target 'watchOS-sample WatchKit Extension' do
22platform :watchos, '6.0'
23  grpc_deps
24end
25