Podfile 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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, '10.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 'FirebaseCoreDiagnostics', :path => '../'
  14. pod 'FirebaseCoreExtension', :path => '../'
  15. pod 'FirebaseCoreInternal', :path => '../'
  16. pod 'FirebaseCrashlytics', :path => '../'
  17. pod 'FirebaseAuth', :path => '../'
  18. pod 'FirebaseAuthInterop', :path => '../'
  19. pod 'FirebaseDatabase', :path => '../'
  20. pod 'FirebaseDynamicLinks', :path => '../'
  21. pod 'FirebaseFirestore', :path => '../'
  22. pod 'FirebaseFunctions', :path => '../'
  23. pod 'FirebaseInAppMessaging', :path => '../'
  24. pod 'FirebaseInstallations', :path => '../'
  25. pod 'FirebaseMessaging', :path => '../'
  26. pod 'FirebaseMessagingInterop', :path => '../'
  27. pod 'FirebasePerformance', :path => '../'
  28. pod 'FirebaseStorage', :path => '../'
  29. pod 'FirebaseStorageInternal', :path => '../'
  30. end
  31. # Using the new speed-enhancing features available with CocoaPods 1.7+
  32. # [sudo] gem install cocoapods --pre
  33. install! 'cocoapods',
  34. :generate_multiple_pod_projects => true,
  35. :incremental_installation => true