Podfile 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. source 'https://github.com/firebase/SpecsDev.git'
  2. source 'https://github.com/firebase/SpecsStaging.git'
  3. source 'https://cdn.cocoapods.org/'
  4. # Uncomment the next line to define a global platform for your project
  5. platform :ios, '11.0'
  6. target 'CocoapodsIntegrationTest' do
  7. # Comment the next line if you don't want to use dynamic frameworks
  8. use_frameworks!
  9. pod 'FirebaseABTesting', :path => '../'
  10. pod 'FirebaseAppDistribution', :path => '../'
  11. pod 'FirebaseAppCheckInterop', :path => '../'
  12. pod 'FirebaseCore', :path => '../'
  13. pod 'FirebaseCoreExtension', :path => '../'
  14. pod 'FirebaseCoreInternal', :path => '../'
  15. pod 'FirebaseCrashlytics', :path => '../'
  16. pod 'FirebaseAuth', :path => '../'
  17. pod 'FirebaseAuthInterop', :path => '../'
  18. pod 'FirebaseDatabase', :path => '../'
  19. pod 'FirebaseDynamicLinks', :path => '../'
  20. pod 'FirebaseFirestore', :path => '../'
  21. pod 'FirebaseFunctions', :path => '../'
  22. pod 'FirebaseInAppMessaging', :path => '../'
  23. pod 'FirebaseInstallations', :path => '../'
  24. pod 'FirebaseMessaging', :path => '../'
  25. pod 'FirebaseMessagingInterop', :path => '../'
  26. pod 'FirebasePerformance', :path => '../'
  27. pod 'FirebaseStorage', :path => '../'
  28. end
  29. # Using the new speed-enhancing features available with CocoaPods 1.7+
  30. # [sudo] gem install cocoapods --pre
  31. install! 'cocoapods',
  32. :generate_multiple_pod_projects => true,
  33. :incremental_installation => true