| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- # Uncomment the next line to define a global platform for your project
- # platform :ios, '15.0'
- source 'https://github.com/firebase/SpecsDev.git'
- source 'https://github.com/firebase/SpecsStaging.git'
- source 'https://cdn.cocoapods.org/'
- 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, '15.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, '15.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, '15.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, '15.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.15'
- # Comment the next line if you don't want to use dynamic frameworks
- use_frameworks!
- shared_pods
- end
|