Podfile 717 B

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