Podfile 1.5 KB

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