Podfile 769 B

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