Podfile 792 B

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