Podfile 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. # Uncomment the next line to define a global platform for your project
  2. platform :ios, '10.0'
  3. source 'https://github.com/firebase/SpecsStaging.git'
  4. source 'https://cdn.cocoapods.org/'
  5. target 'FirebasePodTest' do
  6. # Comment the next line if you don't want to use dynamic frameworks
  7. use_frameworks!
  8. pod 'Firebase', :path => '../../../'
  9. pod 'FirebaseABTesting', :path => '../../../'
  10. pod 'FirebaseAppDistribution', :path => '../../../'
  11. pod 'FirebaseAuth', :path => '../../../'
  12. pod 'FirebaseCore', :path => '../../../'
  13. pod 'FirebaseCoreDiagnostics', :path => '../../../'
  14. pod 'FirebaseCrashlytics', :path => '../../../'
  15. pod 'FirebaseDatabase', :path => '../../../'
  16. pod 'FirebaseDynamicLinks', :path => '../../../'
  17. pod 'FirebaseFirestore', :path => '../../../'
  18. pod 'FirebaseFunctions', :path => '../../../'
  19. pod 'FirebaseInAppMessaging', :path => '../../../'
  20. pod 'FirebaseInstallations', :path => '../../../'
  21. pod 'FirebaseInstanceID', :path => '../../../'
  22. pod 'FirebaseMessaging', :path => '../../../'
  23. pod 'FirebasePerformance', :path => '../../../'
  24. pod 'FirebaseRemoteConfig', :path => '../../../'
  25. pod 'FirebaseStorage', :path => '../../../'
  26. # Get dependent pods from the repo also
  27. pod 'FirebaseCoreDiagnostics', :path => '../../../'
  28. pod 'FirebaseAnalytics' # Analytics is not open source
  29. end