1platform :ios, '10.0' 2 3install! 'cocoapods', :deterministic_uuids => false 4 5ROOT_DIR = '../../../..' 6 7target 'InterceptorSample' do 8 pod 'gRPC-ProtoRPC', :path => ROOT_DIR 9 pod 'gRPC', :path => ROOT_DIR 10 pod 'gRPC-Core', :path => ROOT_DIR 11 pod 'gRPC-RxLibrary', :path => ROOT_DIR 12 pod 'RemoteTest', :path => "../RemoteTestClient" 13 pod '!ProtoCompiler-gRPCPlugin', :path => "#{ROOT_DIR}/src/objective-c" 14end 15