Podfile 366 B

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