Podfile 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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, '11.0'
  6. use_frameworks!
  7. pod 'FirebaseCore', :path => '../../'
  8. pod 'FirebaseInstallations', :path => '../../'
  9. pod 'FirebaseAnalytics' # Binary pods don't work with `:path`.
  10. pod 'FirebaseAnalyticsOnDeviceConversion', :path => '../../'
  11. pod 'FirebaseABTesting', :path => '../../'
  12. pod 'FirebaseAppCheck', :path => '../../'
  13. pod 'FirebaseRemoteConfig', :path => '../../'
  14. pod 'FirebaseRemoteConfigSwift', :path => '../../'
  15. pod 'FirebaseAppDistribution', :path => '../../'
  16. pod 'FirebaseCrashlytics', :path => '../../'
  17. pod 'FirebaseDatabase', :path => '../../'
  18. pod 'FirebaseDatabaseSwift', :path => '../../'
  19. pod 'FirebaseDynamicLinks', :path => '../../'
  20. pod 'FirebaseFirestore', :path => '../../'
  21. pod 'FirebaseFirestoreSwift', :path => '../../'
  22. pod 'FirebaseFunctions', :path => '../../'
  23. pod 'FirebaseInAppMessaging', :path => '../../'
  24. pod 'FirebaseMessaging', :path => '../../'
  25. pod 'FirebasePerformance', :path => '../../'
  26. pod 'FirebaseStorage', :path => '../../'
  27. pod 'FirebaseMLModelDownloader', :path => '../../'
  28. pod 'Firebase', :path => '../../'
  29. end
  30. target 'ClientApp-CocoaPods-iOS13' do
  31. platform :ios, '13.0'
  32. use_frameworks!
  33. pod 'FirebaseAnalytics' # Binary pods don't work with `:path`.
  34. pod 'FirebaseAnalyticsSwift', :path => '../../' # Requires iOS 13.0+
  35. pod 'FirebaseAuth', :path => '../../' # Requires iOS 13.0+
  36. pod 'FirebaseInAppMessaging', :path => '../../'
  37. pod 'FirebaseInAppMessagingSwift', :path => '../../' # Requires iOS 13.0+
  38. end