Podfile 1.5 KB

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