Podfile 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  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, '8.0'
  9. pod 'FirebaseCore', :path => '../../../'
  10. pod 'FirebaseCoreDiagnostics', :path => '../../../'
  11. pod 'FirebaseCoreDiagnosticsInterop', :path => '../../../'
  12. pod 'GoogleDataTransport', :path => '../../../'
  13. pod 'GoogleDataTransportCCTSupport', :path => '../../../'
  14. pod 'GoogleUtilities', :path => '../../../'
  15. pod 'FirebaseAuth', :path => '../../../', :testspecs => ['unit']
  16. pod 'FirebaseInstallations', :path => '../../..'
  17. pod 'FirebaseInstanceID', :path => '../../..'
  18. pod 'FBSDKLoginKit'
  19. pod 'GoogleSignIn', '~> 5'
  20. pod 'GTMSessionFetcher/Core'
  21. target 'Auth_ApiTests' do
  22. inherit! :search_paths
  23. end
  24. target 'SwiftApiTests' do
  25. inherit! :search_paths
  26. end
  27. target 'Auth_E2eTests' do
  28. inherit! :search_paths
  29. pod 'EarlGrey'
  30. end
  31. end