Podfile 1.1 KB

1234567891011121314151617181920212223242526272829
  1. # Uncomment the next line to define a global platform for your project
  2. platform :ios, '10.0'
  3. target 'CocoapodsIntegrationTest' do
  4. # Comment the next line if you don't want to use dynamic frameworks
  5. use_frameworks!
  6. pod 'FirebaseABTesting', :path => '../'
  7. pod 'FirebaseAppDistribution', :path => '../'
  8. pod 'FirebaseCore', :path => '../'
  9. pod 'FirebaseCoreDiagnostics', :path => '../'
  10. pod 'FirebaseCrashlytics', :path => '../'
  11. pod 'FirebaseAuth', :path => '../'
  12. pod 'FirebaseDatabase', :path => '../'
  13. pod 'FirebaseDynamicLinks', :path => '../'
  14. pod 'FirebaseFirestore', :path => '../'
  15. pod 'FirebaseFunctions', :path => '../'
  16. pod 'FirebaseInAppMessaging', :path => '../'
  17. pod 'FirebaseInstallations', :path => '../'
  18. pod 'FirebaseInstanceID', :path => '../'
  19. pod 'FirebaseMessaging', :path => '../'
  20. pod 'FirebasePerformance', :path => '../'
  21. pod 'FirebaseStorage', :path => '../'
  22. end
  23. # Using the new speed-enhancing features available with CocoaPods 1.7+
  24. # [sudo] gem install cocoapods --pre
  25. install! 'cocoapods',
  26. :generate_multiple_pod_projects => true,
  27. :incremental_installation => true