Podfile 754 B

12345678910111213141516171819202122232425
  1. platform :ios, '13.0'
  2. source 'https://github.com/firebase/SpecsDev.git'
  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 'FirebaseCoreInternal', :path => '../../../'
  11. pod 'FirebaseInstallations', :path => '../../../'
  12. pod 'FirebaseRemoteConfig', :path => '../../../'
  13. pod 'FirebaseABTesting', :path => '../../..'
  14. pod 'FirebaseRemoteConfigInterop', :path => '../../..'
  15. # Pods for RemoteConfigSampleApp
  16. target 'RemoteConfigSampleAppUITests' do
  17. inherit! :search_paths
  18. # Pods for testing
  19. end
  20. end