Podfile 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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/SpecsDev.git'
  5. source 'https://github.com/firebase/SpecsStaging.git'
  6. source 'https://cdn.cocoapods.org/'
  7. use_frameworks!
  8. target 'AuthSample' do
  9. platform :ios, '10.0'
  10. pod 'FirebaseCore', :path => '../../../'
  11. pod 'FirebaseCoreDiagnostics', :path => '../../../'
  12. pod 'FirebaseAuth', :path => '../../../', :testspecs => ['unit']
  13. pod 'FirebaseInstallations', :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
  28. target 'SwiftSample' do
  29. platform :ios, '10.0'
  30. pod 'FirebaseCore', :path => '../../../'
  31. pod 'FirebaseCoreDiagnostics', :path => '../../../'
  32. pod 'FirebaseAuth', :path => '../../../', :testspecs => ['unit']
  33. pod 'FirebaseInstallations', :path => '../../..'
  34. pod 'FBSDKLoginKit'
  35. pod 'GoogleSignIn', '~> 5'
  36. pod 'GTMSessionFetcher/Core'
  37. end