Podfile 323 B

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