| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- # Uncomment the next line to define a global platform for your project
- # platform :ios, '9.0'
- def shared_pods
- pod 'FirebaseCore', :path => '../../../'
- pod 'FirebaseInstallations', :path => '../../../'
- pod 'FirebaseCoreInternal', :path => '../../../'
- pod 'FirebaseCoreExtension', :path => '../../../'
- pod 'FirebaseSessions', :path => '../../../'
- pod 'FirebaseRemoteConfigInterop', :path => '../../../'
- end
- target 'AppQualityDevApp_iOS' do
- platform :ios, '11.0'
- # Comment the next line if you don't want to use dynamic frameworks
- use_frameworks!
- shared_pods
- end
- target 'AppQualityDevApp_Crashlytics_iOS' do
- platform :ios, '11.0'
- # Comment the next line if you don't want to use dynamic frameworks
- use_frameworks!
- shared_pods
- pod 'FirebaseCrashlytics', :path => '../../../'
- end
- target 'AppQualityDevApp_Performance_iOS' do
- platform :ios, '11.0'
- # Comment the next line if you don't want to use dynamic frameworks
- use_frameworks!
- shared_pods
- pod 'FirebasePerformance', :path => '../../../'
- end
- target 'AppQualityDevApp_CrashlyticsPerformance_iOS' do
- platform :ios, '11.0'
- # Comment the next line if you don't want to use dynamic frameworks
- use_frameworks!
- shared_pods
- pod 'FirebaseCrashlytics', :path => '../../../'
- pod 'FirebasePerformance', :path => '../../../'
- end
- target 'AppQualityDevApp_macOS' do
- platform :macos, '10.13'
- # Comment the next line if you don't want to use dynamic frameworks
- use_frameworks!
- shared_pods
- end
|