Podfile 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. # Data transport dependencies
  17. pod 'GoogleDataTransport', :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 'FirebasePerformance', :path => '../../../'
  30. pod 'FirebaseRemoteConfig', :path => '../../../'
  31. pod 'FirebaseABTesting', :path => '../../../'
  32. pod 'FirebaseInstallations', :path => '../../../'
  33. pod 'FirebaseCoreDiagnostics', :path => '../../../'
  34. # Data transport dependencies
  35. pod 'GoogleDataTransport', :path => '../../../'
  36. # Other dependencies
  37. pod 'Protobuf'
  38. pod 'GoogleToolboxForMac/Logger'
  39. target 'FIRPerfE2EProdUITests' do
  40. end
  41. end