Podfile 413 B

123456789101112131415161718
  1. use_frameworks!
  2. target 'FirebaseFunctions_Example' do
  3. platform :ios, '8.0'
  4. pod 'FirebaseAuthInterop', :path => '../../'
  5. pod 'FirebaseCore', :path => '../../'
  6. pod 'FirebaseFunctions', :path => '../../'
  7. pod 'GoogleUtilities', :path => '../../'
  8. target 'FirebaseFunctions_Tests' do
  9. inherit! :search_paths
  10. end
  11. target 'FirebaseFunctions_IntegrationTests' do
  12. inherit! :search_paths
  13. end
  14. end