Podfile 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. source 'https://github.com/firebase/SpecsDev.git'
  2. source 'https://github.com/firebase/SpecsStaging.git'
  3. source 'https://cdn.cocoapods.org/'
  4. target 'ClientApp-CocoaPods' do
  5. platform :ios, '12.0'
  6. use_frameworks!
  7. pod 'FirebaseCore', :path => '../../'
  8. pod 'FirebaseCoreInternal', :path => '../../'
  9. pod 'FirebaseCoreExtension', :path => '../../'
  10. pod 'FirebaseInstallations', :path => '../../'
  11. pod 'FirebaseAnalytics' # Binary pods don't work with `:path`.
  12. pod 'FirebaseAnalyticsOnDeviceConversion', :path => '../../'
  13. pod 'FirebaseABTesting', :path => '../../'
  14. pod 'FirebaseAppCheck', :path => '../../'
  15. pod 'FirebaseRemoteConfig', :path => '../../'
  16. pod 'FirebaseRemoteConfigSwift', :path => '../../'
  17. pod 'FirebaseRemoteConfigInterop', :path => '../../'
  18. pod 'FirebaseAppDistribution', :path => '../../'
  19. pod 'FirebaseAuth', :path => '../../'
  20. pod 'FirebaseCrashlytics', :path => '../../'
  21. pod 'FirebaseDatabase', :path => '../../'
  22. pod 'FirebaseDatabaseSwift', :path => '../../'
  23. pod 'FirebaseDynamicLinks', :path => '../../'
  24. pod 'FirebaseFirestore', :path => '../../'
  25. pod 'FirebaseFirestoreSwift', :path => '../../'
  26. pod 'FirebaseFunctions', :path => '../../'
  27. pod 'FirebaseInAppMessaging', :path => '../../'
  28. pod 'FirebaseMessaging', :path => '../../'
  29. pod 'FirebasePerformance', :path => '../../'
  30. pod 'FirebaseStorage', :path => '../../'
  31. pod 'FirebaseMLModelDownloader', :path => '../../'
  32. pod 'Firebase', :path => '../../'
  33. end
  34. target 'ClientApp-CocoaPods-iOS13' do
  35. platform :ios, '13.0'
  36. use_frameworks!
  37. pod 'FirebaseAnalytics' # Binary pods don't work with `:path`.
  38. pod 'FirebaseAnalyticsSwift', :path => '../../' # Requires iOS 13.0+
  39. pod 'FirebaseInAppMessaging', :path => '../../'
  40. pod 'FirebaseInAppMessagingSwift', :path => '../../' # Requires iOS 13.0+
  41. end