Podfile 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. platform :ios, '14.0'
  2. source 'https://github.com/firebase/SpecsDev.git'
  3. source 'https://github.com/firebase/SpecsStaging.git'
  4. source 'https://cdn.cocoapods.org/'
  5. target 'SymbolCollisionTest' do
  6. use_frameworks!
  7. # Firebase Pods
  8. pod 'Firebase', :path => '../'
  9. pod 'FirebaseABTesting', :path => '../'
  10. pod 'FirebaseAppDistribution', :path => '../'
  11. pod 'FirebaseAnalytics'
  12. pod 'FirebaseAuth', :path => '../'
  13. pod 'FirebaseCore', :path => '../'
  14. pod 'FirebaseCoreExtension', :path => '../'
  15. pod 'FirebaseCoreInternal', :path => '../'
  16. pod 'FirebaseCrashlytics', :path => '../'
  17. pod 'FirebaseDatabase', :path => '../'
  18. pod 'FirebaseDynamicLinks', :path => '../'
  19. pod 'FirebaseFirestore', :path => '../'
  20. pod 'FirebaseFunctions', :path => '../'
  21. pod 'FirebaseInAppMessaging', :path => '../'
  22. pod 'FirebaseInstallations', :path => '../'
  23. pod 'FirebaseMessaging', :path => '../'
  24. pod 'FirebasePerformance', :path => '../'
  25. pod 'FirebaseRemoteConfig', :path => '../'
  26. pod 'FirebaseStorage', :path => '../'
  27. pod 'GoogleUtilitiesComponents', :path => '../'
  28. # pod 'FirebaseUI'. - requires use_frameworks!
  29. # Google Pods depending on a Firebase or GDT major version
  30. # MLKit is incompatible with ARCore.
  31. # duplicate symbol 'farmhashte::Fingerprint64WithSeeds. See #11003.
  32. # pod 'GoogleMLKit'
  33. # Other Google Pods
  34. pod 'ARCore'
  35. # pod 'GeoFire' -- requires Firebase/Database 4.0
  36. # pod 'google-cast-sdk' -- abseil
  37. pod 'Google-Mobile-Ads-SDK'
  38. pod 'GoogleAnalytics'
  39. pod 'GoogleMaps', '> 8'
  40. # pod 'GoogleMobileVision' # After Firebase 6.8.0, conflicts with FirebaseML
  41. pod 'GooglePlaces', '> 8'
  42. pod 'GoogleSignIn', '> 6'
  43. pod 'GTMAppAuth'
  44. pod 'GoogleTagManager'
  45. pod 'GoogleToolboxForMac'
  46. pod 'GoogleUtilities'
  47. # pod 'GTMHTTPFetcher' - conflicts with GTMSessionFetcher
  48. pod 'GTMSessionFetcher'
  49. # pod 'GVRSDK' -- absl and protobuf duplicates
  50. pod 'leveldb-library'
  51. pod 'nanopb'
  52. # pod 'NearbyMessages' # - conflicts with google-cast-sdk
  53. pod 'Protobuf'
  54. # Non-Google Pods
  55. end