No Description

Podfile 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. platform :ios, '9.0'
  2. require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
  3. target 'demo' do
  4. # Pods for demo
  5. pod 'React', :path => '../node_modules/react-native/'
  6. pod 'React-Core', :path => '../node_modules/react-native/React'
  7. pod 'React-DevSupport', :path => '../node_modules/react-native/React'
  8. pod 'React-fishhook', :path => '../node_modules/react-native/Libraries/fishhook'
  9. pod 'React-RCTActionSheet', :path => '../node_modules/react-native/Libraries/ActionSheetIOS'
  10. pod 'React-RCTAnimation', :path => '../node_modules/react-native/Libraries/NativeAnimation'
  11. pod 'React-RCTBlob', :path => '../node_modules/react-native/Libraries/Blob'
  12. pod 'React-RCTImage', :path => '../node_modules/react-native/Libraries/Image'
  13. pod 'React-RCTLinking', :path => '../node_modules/react-native/Libraries/LinkingIOS'
  14. pod 'React-RCTNetwork', :path => '../node_modules/react-native/Libraries/Network'
  15. pod 'React-RCTSettings', :path => '../node_modules/react-native/Libraries/Settings'
  16. pod 'React-RCTText', :path => '../node_modules/react-native/Libraries/Text'
  17. pod 'React-RCTVibration', :path => '../node_modules/react-native/Libraries/Vibration'
  18. pod 'React-RCTWebSocket', :path => '../node_modules/react-native/Libraries/WebSocket'
  19. pod 'React-cxxreact', :path => '../node_modules/react-native/ReactCommon/cxxreact'
  20. pod 'React-jsi', :path => '../node_modules/react-native/ReactCommon/jsi'
  21. pod 'React-jsiexecutor', :path => '../node_modules/react-native/ReactCommon/jsiexecutor'
  22. pod 'React-jsinspector', :path => '../node_modules/react-native/ReactCommon/jsinspector'
  23. pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
  24. pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
  25. pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
  26. pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
  27. pod 'react-native-webview', :path => '../node_modules/react-native-webview'
  28. target 'demoTests' do
  29. inherit! :search_paths
  30. # Pods for testing
  31. end
  32. use_native_modules!
  33. end
  34. target 'demo-tvOS' do
  35. # Pods for demo-tvOS
  36. target 'demo-tvOSTests' do
  37. inherit! :search_paths
  38. # Pods for testing
  39. end
  40. end