Podfile 953 B

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