Podfile 826 B

1234567891011121314151617181920212223242526
  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. pod 'FirebaseRemoteConfigInterop', :path => '../../..'
  16. # Pods for RemoteConfigSampleApp
  17. target 'RemoteConfigSampleAppUITests' do
  18. inherit! :search_paths
  19. # Pods for testing
  20. end
  21. end