Podfile 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  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, '15.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 'FirebaseSessions', :path => '../../'
  16. pod 'FirebaseCrashlytics', :path => '../../'
  17. pod 'FirebaseAuth', :path => '../../'
  18. pod 'FirebaseAuthInterop', :path => '../../'
  19. pod 'FirebaseDatabase', :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 'FirebaseRemoteConfigInterop', :path => '../../'
  27. pod 'FirebasePerformance', :path => '../../'
  28. pod 'FirebaseStorage', :path => '../../'
  29. end
  30. # Using the new speed-enhancing features available with CocoaPods 1.7+
  31. # [sudo] gem install cocoapods --pre
  32. install! 'cocoapods',
  33. :generate_multiple_pod_projects => true,
  34. :incremental_installation => true