Podfile 894 B

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