Podfile 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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, '11.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. # Other dependencies
  18. pod 'Protobuf'
  19. pod 'GoogleToolboxForMac/Logger'
  20. target 'FIRPerfE2EAutopushUITests' do
  21. end
  22. end
  23. target 'FIRPerfE2EProd' do
  24. # Comment the next line if you don't want to use dynamic frameworks
  25. use_frameworks!
  26. # Pods for FIRPerfE2EProd
  27. pod 'FirebaseCore', :path => '../../../'
  28. pod 'FirebaseCoreInternal', :path => '../../../'
  29. pod 'FirebasePerformance', :path => '../../../'
  30. pod 'FirebaseRemoteConfig', :path => '../../../'
  31. pod 'FirebaseABTesting', :path => '../../../'
  32. pod 'FirebaseInstallations', :path => '../../../'
  33. # Other dependencies
  34. pod 'Protobuf'
  35. pod 'GoogleToolboxForMac/Logger'
  36. target 'FIRPerfE2EProdUITests' do
  37. end
  38. end