From 66ae6bfe463612786fc10572792ed5f0fd241b17 Mon Sep 17 00:00:00 2001 From: Benny Wong Date: Thu, 12 Nov 2015 10:23:18 -0500 Subject: [PATCH] Update Podfile to point to the right sample dependencies --- src/objective-c/examples/Sample/Podfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/objective-c/examples/Sample/Podfile b/src/objective-c/examples/Sample/Podfile index 72308c16192..3b2f4125694 100644 --- a/src/objective-c/examples/Sample/Podfile +++ b/src/objective-c/examples/Sample/Podfile @@ -1,8 +1,9 @@ source 'https://github.com/CocoaPods/Specs.git' platform :ios, '8.0' +pod 'Protobuf', :path => "../../../../third_party/protobuf" pod 'gRPC', :path => "../../../.." -pod 'RemoteTest', :path => "../../generated_libraries/RemoteTestClient" +pod 'RemoteTest', :path => "../RemoteTestClient" target 'Sample' do end