Podfile 722 B

123456789101112131415161718192021222324
  1. # Uncomment the next line to define a global platform for your project
  2. # platform :ios, '9.0'
  3. source 'https://github.com/firebase/SpecsStaging.git'
  4. source 'https://cdn.cocoapods.org/'
  5. target 'RemoteConfigSampleApp' do
  6. # Comment the next line if you don't want to use dynamic frameworks
  7. use_frameworks!
  8. pod 'FirebaseAnalytics'
  9. pod 'FirebaseCore', :path => '../../../'
  10. pod 'FirebaseCoreDiagnostics', :path => '../../../'
  11. pod 'FirebaseInstallations', :path => '../../../'
  12. pod 'FirebaseRemoteConfig', :path => '../../../'
  13. pod 'FirebaseABTesting', :path => '../../..'
  14. # Pods for RemoteConfigSampleApp
  15. target 'RemoteConfigSampleAppUITests' do
  16. inherit! :search_paths
  17. # Pods for testing
  18. end
  19. end