Podfile 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. source 'https://github.com/firebase/SpecsStaging.git'
  2. source 'https://cdn.cocoapods.org/'
  3. # Uncomment the next line to define a global platform for your project
  4. platform :ios, '10.0'
  5. target 'FIRPerfE2EAutopush' do
  6. # Comment the next line if you don't want to use dynamic frameworks
  7. use_frameworks!
  8. # Pods for FIRPerfE2EAutopush
  9. # Firebase dependencies
  10. pod 'FirebaseCore', :path => '../../../'
  11. pod 'FirebasePerformance', :path => '../../../'
  12. pod 'FirebaseRemoteConfig', :path => '../../../'
  13. pod 'FirebaseABTesting', :path => '../../../'
  14. pod 'FirebaseInstallations', :path => '../../../'
  15. pod 'FirebaseCoreDiagnostics', :path => '../../../'
  16. # Other dependencies
  17. pod 'Protobuf'
  18. pod 'GoogleToolboxForMac/Logger'
  19. target 'FIRPerfE2EAutopushUITests' do
  20. end
  21. end
  22. target 'FIRPerfE2EProd' do
  23. # Comment the next line if you don't want to use dynamic frameworks
  24. use_frameworks!
  25. # Pods for FIRPerfE2EProd
  26. pod 'FirebaseCore', :path => '../../../'
  27. pod 'FirebasePerformance', :path => '../../../'
  28. pod 'FirebaseRemoteConfig', :path => '../../../'
  29. pod 'FirebaseABTesting', :path => '../../../'
  30. pod 'FirebaseInstallations', :path => '../../../'
  31. pod 'FirebaseCoreDiagnostics', :path => '../../../'
  32. # Other dependencies
  33. pod 'Protobuf'
  34. pod 'GoogleToolboxForMac/Logger'
  35. target 'FIRPerfE2EProdUITests' do
  36. end
  37. end