Podfile 907 B

12345678910111213141516171819202122232425262728293031
  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://cdn.cocoapods.org/'
  5. use_frameworks!
  6. target 'AuthSample' do
  7. platform :ios, '8.0'
  8. pod 'FirebaseCore', :path => '../../../'
  9. pod 'FirebaseCoreDiagnostics', :path => '../../../'
  10. pod 'FirebaseCoreDiagnosticsInterop', :path => '../../../'
  11. pod 'GoogleDataTransport', :path => '../../../'
  12. pod 'GoogleDataTransportCCTSupport', :path => '../../../'
  13. pod 'GoogleUtilities', :path => '../../../'
  14. pod 'FirebaseAuth', :path => '../../../', :testspecs => ['unit']
  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 'Auth_E2eTests' do
  23. inherit! :search_paths
  24. pod 'EarlGrey'
  25. end
  26. end