Podfile 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # Uncomment the next line to define a global platform for your project
  2. platform :ios, '10.0'
  3. target 'FIRPerfE2EAutopush' do
  4. # Comment the next line if you don't want to use dynamic frameworks
  5. use_frameworks!
  6. # Pods for FIRPerfE2EAutopush
  7. # Firebase dependencies
  8. pod 'FirebaseCore', :path => '../../../'
  9. pod 'FirebasePerformance', :path => '../../../'
  10. pod 'FirebaseRemoteConfig', :path => '../../../'
  11. pod 'FirebaseABTesting', :path => '../../../'
  12. pod 'FirebaseInstallations', :path => '../../../'
  13. pod 'GoogleUtilities', :path => '../../../'
  14. pod 'FirebaseCoreDiagnostics', :path => '../../../'
  15. # Data transport dependencies
  16. pod 'GoogleDataTransport', :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 'FirebasePerformance', :path => '../../../'
  29. pod 'FirebaseRemoteConfig', :path => '../../../'
  30. pod 'FirebaseABTesting', :path => '../../../'
  31. pod 'FirebaseInstallations', :path => '../../../'
  32. pod 'GoogleUtilities', :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