| 123456789101112131415161718192021222324252627282930 |
- # Uncomment the next two lines for pre-release testing on internal repo
- #source 'sso://cpdc-internal/firebase'
- #source 'https://github.com/CocoaPods/Specs.git'
- # Comment the following line to use the CocoaPods master repo instead.
- # Disabled. See https://github.com/firebase/firebase-ios-sdk/issues/3165
- # source 'https://cdn.jsdelivr.net/cocoa/'
- use_frameworks!
- target 'AuthSample' do
- platform :ios, '8.0'
- pod 'FirebaseCore', :path => '../../../'
- pod 'GoogleUtilities', :path => '../../../'
- pod 'FirebaseAuth', :path => '../../../', :testspecs => ['unit']
- pod 'FirebaseCore', :path => '../../../'
- pod 'FirebaseInstanceID', :path => '../../..'
- pod 'FBSDKLoginKit'
- pod 'GoogleSignIn'
- pod 'GTMSessionFetcher/Core'
- target 'Auth_ApiTests' do
- inherit! :search_paths
- end
- target 'Auth_E2eTests' do
- inherit! :search_paths
- pod 'EarlGrey'
- end
- end
|