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