From 816dbd44640cadf95fc22f0e2d13903055f092bc Mon Sep 17 00:00:00 2001 From: Jorge Canizales Date: Wed, 10 Jun 2015 13:35:17 -0700 Subject: [PATCH] Add Podfile with dependency on the proto library and Google/SignIn --- objective-c/auth_sample/Podfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 objective-c/auth_sample/Podfile diff --git a/objective-c/auth_sample/Podfile b/objective-c/auth_sample/Podfile new file mode 100644 index 00000000000..dd4fd558c0e --- /dev/null +++ b/objective-c/auth_sample/Podfile @@ -0,0 +1,10 @@ +source 'https://github.com/CocoaPods/Specs.git' +platform :ios, '8.0' + +target 'AuthSample' do + # Depend on the generated AuthTestService library. + pod 'AuthTestService', :path => '.' + + # Depend on Google's OAuth2 library + pod 'Google/SignIn' +end