Podfile 880 B

123456789101112131415161718192021222324252627282930
  1. # Uncomment the next two lines for pre-release testing on internal repo
  2. #source 'sso://cpdc-internal/firebase'
  3. #source 'https://github.com/CocoaPods/Specs.git'
  4. # Comment the following line to use the CocoaPods master repo instead.
  5. # Disabled. See https://github.com/firebase/firebase-ios-sdk/issues/3165
  6. # source 'https://cdn.jsdelivr.net/cocoa/'
  7. use_frameworks!
  8. target 'AuthSample' do
  9. platform :ios, '8.0'
  10. pod 'FirebaseCore', :path => '../../../'
  11. pod 'GoogleUtilities', :path => '../../../'
  12. pod 'FirebaseAuth', :path => '../../../', :testspecs => ['unit']
  13. pod 'FirebaseCore', :path => '../../../'
  14. pod 'FirebaseInstanceID', :path => '../../..'
  15. pod 'FBSDKLoginKit'
  16. pod 'GoogleSignIn'
  17. pod 'GTMSessionFetcher/Core'
  18. target 'Auth_ApiTests' do
  19. inherit! :search_paths
  20. end
  21. target 'Auth_E2eTests' do
  22. inherit! :search_paths
  23. pod 'EarlGrey'
  24. end
  25. end