Podfile 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. end
  10. target 'AppQualityDevApp_iOS' do
  11. platform :ios, '11.0'
  12. # Comment the next line if you don't want to use dynamic frameworks
  13. use_frameworks!
  14. shared_pods
  15. end
  16. target 'AppQualityDevApp_Crashlytics_iOS' do
  17. platform :ios, '11.0'
  18. # Comment the next line if you don't want to use dynamic frameworks
  19. use_frameworks!
  20. shared_pods
  21. pod 'FirebaseCrashlytics', :path => '../../../'
  22. end
  23. target 'AppQualityDevApp_Performance_iOS' do
  24. platform :ios, '11.0'
  25. # Comment the next line if you don't want to use dynamic frameworks
  26. use_frameworks!
  27. shared_pods
  28. pod 'FirebasePerformance', :path => '../../../'
  29. end
  30. target 'AppQualityDevApp_CrashlyticsPerformance_iOS' do
  31. platform :ios, '11.0'
  32. # Comment the next line if you don't want to use dynamic frameworks
  33. use_frameworks!
  34. shared_pods
  35. pod 'FirebaseCrashlytics', :path => '../../../'
  36. pod 'FirebasePerformance', :path => '../../../'
  37. end
  38. target 'AppQualityDevApp_macOS' do
  39. platform :macos, '10.13'
  40. # Comment the next line if you don't want to use dynamic frameworks
  41. use_frameworks!
  42. shared_pods
  43. end