Podfile 908 B

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