| 1234567891011121314151617181920212223242526272829303132333435363738 |
- source 'https://github.com/firebase/SpecsDev.git'
- source 'https://github.com/firebase/SpecsStaging.git'
- source 'https://cdn.cocoapods.org/'
- # Uncomment the next line to define a global platform for your project
- platform :ios, '10.0'
- target 'CocoapodsIntegrationTest' do
- # Comment the next line if you don't want to use dynamic frameworks
- use_frameworks!
- pod 'FirebaseABTesting', :path => '../'
- pod 'FirebaseAppDistribution', :path => '../'
- pod 'FirebaseAppCheckInterop', :path => '../'
- pod 'FirebaseCore', :path => '../'
- pod 'FirebaseCoreDiagnostics', :path => '../'
- pod 'FirebaseCoreExtension', :path => '../'
- pod 'FirebaseCoreInternal', :path => '../'
- pod 'FirebaseCrashlytics', :path => '../'
- pod 'FirebaseAuth', :path => '../'
- pod 'FirebaseAuthInterop', :path => '../'
- pod 'FirebaseDatabase', :path => '../'
- pod 'FirebaseDynamicLinks', :path => '../'
- pod 'FirebaseFirestore', :path => '../'
- pod 'FirebaseFunctions', :path => '../'
- pod 'FirebaseInAppMessaging', :path => '../'
- pod 'FirebaseInstallations', :path => '../'
- pod 'FirebaseMessaging', :path => '../'
- pod 'FirebaseMessagingInterop', :path => '../'
- pod 'FirebasePerformance', :path => '../'
- pod 'FirebaseStorage', :path => '../'
- pod 'FirebaseStorageInternal', :path => '../'
- end
- # Using the new speed-enhancing features available with CocoaPods 1.7+
- # [sudo] gem install cocoapods --pre
- install! 'cocoapods',
- :generate_multiple_pod_projects => true,
- :incremental_installation => true
|