No Description

Podfile 746B

12345678910111213141516171819202122232425262728293031323334
  1. require_relative '../node_modules/react-native/scripts/react_native_pods'
  2. require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
  3. platform :ios, '10.0'
  4. target 'demo' do
  5. config = use_native_modules!
  6. use_react_native!(:path => config["reactNativePath"])
  7. target 'demoTests' do
  8. inherit! :complete
  9. # Pods for testing
  10. end
  11. # Enables Flipper.
  12. #
  13. # Note that if you have use_frameworks! enabled, Flipper will not work and
  14. # you should disable these next few lines.
  15. use_flipper!
  16. post_install do |installer|
  17. flipper_post_install(installer)
  18. end
  19. end
  20. target 'demo-tvOS' do
  21. # Pods for demo-tvOS
  22. target 'demo-tvOSTests' do
  23. inherit! :search_paths
  24. # Pods for testing
  25. end
  26. end