Podfile 1019 B

123456789101112131415161718192021222324252627282930313233343536
  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 'FirebaseCoreInternal', :path => '../../../'
  13. pod 'FirebaseAuth', :path => '../../../', :testspecs => ['unit']
  14. pod 'FirebaseInstallations', :path => '../../..'
  15. pod 'FBSDKLoginKit'
  16. pod 'GoogleSignIn', '~> 6'
  17. pod 'GTMSessionFetcher/Core'
  18. target 'Auth_ApiTests' do
  19. inherit! :search_paths
  20. # `HeartbeatLoggingTestUtils` is unpublished.
  21. pod 'HeartbeatLoggingTestUtils', :path => '../../../'
  22. end
  23. target 'SwiftApiTests' do
  24. inherit! :search_paths
  25. end
  26. target 'Auth_E2eTests' do
  27. inherit! :search_paths
  28. pod 'EarlGrey'
  29. end
  30. end