• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1install! 'cocoapods', :deterministic_uuids => false
2platform :ios, '10.0'
3
4# Location of gRPC's repo root relative to this file.
5GRPC_LOCAL_SRC = '../../../..'
6
7target 'ConnectivityTestingApp' do
8  pod 'gRPC/CFStream', :path => GRPC_LOCAL_SRC
9  pod 'gRPC-Core/CFStream-Implementation', :path => GRPC_LOCAL_SRC
10  pod 'gRPC-ProtoRPC/CFStream', :path => GRPC_LOCAL_SRC
11  pod 'gRPC-RxLibrary', :path => GRPC_LOCAL_SRC
12  pod 'Protobuf', :path => "#{GRPC_LOCAL_SRC}/third_party/protobuf"
13  pod 'BoringSSL-GRPC', :podspec => "#{GRPC_LOCAL_SRC}/src/objective-c"
14end
15