require_relative '../node_modules/react-native/scripts/react_native_pods'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'

platform :ios, '10.0'

target 'Ecency' do
  config = use_native_modules!

  # Pods for Ecency

  use_react_native!(:path => config["reactNativePath"])
  
  target 'EcencyTests' do
    inherit! :complete
    # Pods for testing
  end

  post_install do |installer|
    installer.pods_project.targets.each do |target|
      target.build_configurations.each do |config|
        config.build_settings["ONLY_ACTIVE_ARCH"] = "NO"
      end
    end
  end

end

target 'Ecency-tvOS' do
  # Pods for Ecency-tvOS

  target 'Ecency-tvOSTests' do
    inherit! :search_paths
    # Pods for testing
  end

end