Podfile 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. platform :ios, '15.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 'FirebaseSessions', :path => '../'
  17. pod 'FirebaseCrashlytics', :path => '../'
  18. pod 'FirebaseDatabase', :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 'FirebaseUI'. - requires use_frameworks!
  28. # Google Pods depending on a Firebase or GDT major version
  29. # MLKit is incompatible with ARCore.
  30. # duplicate symbol 'farmhashte::Fingerprint64WithSeeds. See #11003.
  31. # pod 'GoogleMLKit'
  32. # Other Google Pods
  33. pod 'ARCore'
  34. # pod 'GeoFire' -- requires Firebase/Database 4.0
  35. # pod 'google-cast-sdk' -- abseil
  36. pod 'Google-Mobile-Ads-SDK'
  37. pod 'GoogleAnalytics'
  38. pod 'GoogleMaps', '> 8'
  39. # pod 'GoogleMobileVision' # After Firebase 6.8.0, conflicts with FirebaseML
  40. pod 'GooglePlaces', '> 8'
  41. pod 'GoogleSignIn', '> 6'
  42. pod 'GTMAppAuth'
  43. pod 'GoogleTagManager', '>= 7.4.6'
  44. pod 'GoogleToolboxForMac'
  45. pod 'GoogleUtilities'
  46. # pod 'GTMHTTPFetcher' - conflicts with GTMSessionFetcher
  47. pod 'GTMSessionFetcher'
  48. # pod 'GVRSDK' -- absl and protobuf duplicates
  49. pod 'leveldb-library'
  50. pod 'nanopb'
  51. # pod 'NearbyMessages' # - conflicts with google-cast-sdk
  52. pod 'Protobuf'
  53. # Non-Google Pods
  54. end