Podfile 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. platform :ios, '10.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 'FirebaseCoreDiagnostics', :path => '../'
  15. pod 'FirebaseCrashlytics', :path => '../'
  16. pod 'FirebaseDatabase', :path => '../'
  17. pod 'FirebaseDynamicLinks', :path => '../'
  18. pod 'FirebaseFirestore', :path => '../'
  19. pod 'FirebaseFunctions', :path => '../'
  20. pod 'FirebaseInAppMessaging', :path => '../'
  21. pod 'FirebaseInstallations', :path => '../'
  22. pod 'FirebaseMessaging', :path => '../'
  23. pod 'FirebasePerformance', :path => '../'
  24. pod 'FirebaseRemoteConfig', :path => '../'
  25. pod 'FirebaseStorage', :path => '../'
  26. pod 'GoogleUtilitiesComponents', :path => '../'
  27. # pod 'FirebaseUI'. - requires use_frameworks!
  28. # Google Pods depending on a Firebase or GDT major version
  29. pod 'GoogleMLKit'
  30. # Other Google Pods
  31. # pod 'ARCore' Conflicts with FirebasePerformance via Clearcut and google-cast-sdk
  32. # pod 'Blockly' `Blockly` does not specify a Swift version ...
  33. pod 'DigitsMigrationHelper'
  34. pod 'EarlGrey'
  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 'GoogleAppIndexing'
  40. pod 'GoogleAppUtilities'
  41. pod 'GoogleAuthUtilities'
  42. pod 'GoogleConversionTracking'
  43. pod 'GoogleDataTransport'
  44. pod 'GoogleIDFASupport'
  45. pod 'GoogleInterchangeUtilities'
  46. pod 'GoogleMaps'
  47. # pod 'GoogleMobileVision' # After Firebase 6.8.0, conflicts with FirebaseML
  48. pod 'GoogleNetworkingUtilities'
  49. pod 'GoogleParsingUtilities'
  50. pod 'GooglePlacePicker'
  51. pod 'GooglePlaces'
  52. pod 'GooglePlusUtilities'
  53. pod 'GoogleSignIn'
  54. pod 'GoogleSymbolUtilities'
  55. pod 'GoogleTagManager'
  56. pod 'GoogleToolboxForMac'
  57. pod 'GoogleUtilities'
  58. pod 'GTMAppAuth'
  59. # pod 'GTMHTTPFetcher' - conflicts with GTMSessionFetcher
  60. pod 'GTMSessionFetcher'
  61. # pod 'GVRSDK' -- absl and protobuf duplicates
  62. pod 'leveldb-library'
  63. # pod 'MDFTextAccessibility' - conflicts with GVRSDK
  64. pod 'nanopb'
  65. # pod 'NearbyMessages' # - conflicts with google-cast-sdk
  66. pod 'Protobuf'
  67. # Non-Google Pods
  68. end