Podfile 933 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. use_frameworks!
  2. platform :ios, '8.0'
  3. target 'Sample' do
  4. pod 'FirebaseCommunity/Auth', :path => '../'
  5. pod 'FBSDKLoginKit'
  6. pod 'GoogleSignIn'
  7. # Lock to the 1.0.9 version of InstanceID since 1.0.10 added a dependency
  8. # to FirebaseCore
  9. pod 'FirebaseInstanceID', '1.0.9'
  10. pod 'GTMSessionFetcher/Core'
  11. end
  12. target 'SwiftSample' do
  13. pod 'FirebaseCommunity/Auth', :path => '../'
  14. pod 'GoogleSignIn'
  15. pod 'FirebaseInstanceID', '1.0.9'
  16. end
  17. target 'ApiTests' do
  18. pod 'FirebaseCommunity/Auth', :path => '../'
  19. pod 'GoogleSignIn'
  20. pod 'FirebaseInstanceID', '1.0.9'
  21. pod 'GTMSessionFetcher/Core'
  22. end
  23. target 'EarlGreyTests' do
  24. pod 'FirebaseCommunity/Auth', :path => '../'
  25. pod 'GoogleSignIn'
  26. pod 'FirebaseInstanceID', '1.0.9'
  27. pod 'EarlGrey'
  28. end
  29. target 'TestApp' do
  30. pod 'FirebaseCommunity/Auth', :path => '../'
  31. end
  32. target 'FirebaseAuthUnitTests' do
  33. pod 'FirebaseCommunity/Auth', :path => '../'
  34. pod 'OCMock'
  35. end