Podfile 650 B

12345678910111213141516171819202122
  1. use_frameworks!
  2. target 'FirebaseFunctions_Example' do
  3. platform :ios, '8.0'
  4. pod 'FirebaseAuthInterop', :path => '../../'
  5. pod 'FirebaseCore', :path => '../../'
  6. pod 'FirebaseCoreDiagnostics', :path => '../../'
  7. pod 'FirebaseCoreDiagnosticsInterop', :path => '../../'
  8. pod 'FirebaseFunctions', :path => '../../', :testspecs => ['unit']
  9. pod 'GoogleDataTransport', :path => '../../'
  10. pod 'GoogleDataTransportCCTSupport', :path => '../../'
  11. pod 'GoogleUtilities', :path => '../../'
  12. target 'FirebaseFunctions_Tests' do
  13. inherit! :search_paths
  14. end
  15. target 'FirebaseFunctions_IntegrationTests' do
  16. inherit! :search_paths
  17. end
  18. end