Podfile 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # Uncomment the next line to define a global platform for your project
  2. # platform :ios, '9.0'
  3. source 'https://github.com/firebase/SpecsDev.git'
  4. source 'https://github.com/firebase/SpecsStaging.git'
  5. source 'https://cdn.cocoapods.org/'
  6. def shared_pods
  7. pod 'FirebaseCore', :path => '../../../'
  8. pod 'FirebaseInstallations', :path => '../../../'
  9. pod 'FirebaseCoreInternal', :path => '../../../'
  10. pod 'FirebaseCoreExtension', :path => '../../../'
  11. pod 'FirebaseSessions', :path => '../../../'
  12. pod 'FirebaseRemoteConfigInterop', :path => '../../../'
  13. end
  14. target 'AppQualityDevApp_iOS' do
  15. platform :ios, '13.0'
  16. # Comment the next line if you don't want to use dynamic frameworks
  17. use_frameworks!
  18. shared_pods
  19. end
  20. target 'AppQualityDevApp_Crashlytics_iOS' do
  21. platform :ios, '13.0'
  22. # Comment the next line if you don't want to use dynamic frameworks
  23. use_frameworks!
  24. shared_pods
  25. pod 'FirebaseCrashlytics', :path => '../../../'
  26. end
  27. target 'AppQualityDevApp_Performance_iOS' do
  28. platform :ios, '13.0'
  29. # Comment the next line if you don't want to use dynamic frameworks
  30. use_frameworks!
  31. shared_pods
  32. pod 'FirebasePerformance', :path => '../../../'
  33. end
  34. target 'AppQualityDevApp_CrashlyticsPerformance_iOS' do
  35. platform :ios, '13.0'
  36. # Comment the next line if you don't want to use dynamic frameworks
  37. use_frameworks!
  38. shared_pods
  39. pod 'FirebaseCrashlytics', :path => '../../../'
  40. pod 'FirebasePerformance', :path => '../../../'
  41. end
  42. target 'AppQualityDevApp_macOS' do
  43. platform :macos, '10.15'
  44. # Comment the next line if you don't want to use dynamic frameworks
  45. use_frameworks!
  46. shared_pods
  47. end