Podfile 858 B

123456789101112131415161718192021222324252627282930313233
  1. # Uncomment the next two lines for pre-release testing on internal repo
  2. #source 'sso://cpdc-internal/firebase'
  3. #source 'https://cdn.cocoapods.org/'
  4. source 'https://github.com/firebase/SpecsStaging.git'
  5. source 'https://cdn.cocoapods.org/'
  6. use_frameworks!
  7. target 'AuthSample' do
  8. platform :ios, '10.0'
  9. pod 'FirebaseCore', :path => '../../../'
  10. pod 'FirebaseCoreDiagnostics', :path => '../../../'
  11. pod 'FirebaseAuth', :path => '../../../', :testspecs => ['unit']
  12. pod 'FirebaseInstallations', :path => '../../..'
  13. pod 'FirebaseInstanceID', :path => '../../..'
  14. pod 'FBSDKLoginKit'
  15. pod 'GoogleSignIn', '~> 5'
  16. pod 'GTMSessionFetcher/Core'
  17. target 'Auth_ApiTests' do
  18. inherit! :search_paths
  19. end
  20. target 'SwiftApiTests' do
  21. inherit! :search_paths
  22. end
  23. target 'Auth_E2eTests' do
  24. inherit! :search_paths
  25. pod 'EarlGrey'
  26. end
  27. end