No Description

Podfile 2.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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 'FBLazyVector', :path => "../node_modules/react-native/Libraries/FBLazyVector"
  6. pod 'FBReactNativeSpec', :path => "../node_modules/react-native/Libraries/FBReactNativeSpec"
  7. pod 'RCTRequired', :path => "../node_modules/react-native/Libraries/RCTRequired"
  8. pod 'RCTTypeSafety', :path => "../node_modules/react-native/Libraries/TypeSafety"
  9. pod 'React', :path => '../node_modules/react-native/'
  10. pod 'React-Core', :path => '../node_modules/react-native/'
  11. pod 'React-CoreModules', :path => '../node_modules/react-native/React/CoreModules'
  12. pod 'React-Core/DevSupport', :path => '../node_modules/react-native/'
  13. pod 'React-RCTActionSheet', :path => '../node_modules/react-native/Libraries/ActionSheetIOS'
  14. pod 'React-RCTAnimation', :path => '../node_modules/react-native/Libraries/NativeAnimation'
  15. pod 'React-RCTBlob', :path => '../node_modules/react-native/Libraries/Blob'
  16. pod 'React-RCTImage', :path => '../node_modules/react-native/Libraries/Image'
  17. pod 'React-RCTLinking', :path => '../node_modules/react-native/Libraries/LinkingIOS'
  18. pod 'React-RCTNetwork', :path => '../node_modules/react-native/Libraries/Network'
  19. pod 'React-RCTSettings', :path => '../node_modules/react-native/Libraries/Settings'
  20. pod 'React-RCTText', :path => '../node_modules/react-native/Libraries/Text'
  21. pod 'React-RCTVibration', :path => '../node_modules/react-native/Libraries/Vibration'
  22. pod 'React-Core/RCTWebSocket', :path => '../node_modules/react-native/'
  23. pod 'React-cxxreact', :path => '../node_modules/react-native/ReactCommon/cxxreact'
  24. pod 'React-jsi', :path => '../node_modules/react-native/ReactCommon/jsi'
  25. pod 'React-jsiexecutor', :path => '../node_modules/react-native/ReactCommon/jsiexecutor'
  26. pod 'React-jsinspector', :path => '../node_modules/react-native/ReactCommon/jsinspector'
  27. pod 'ReactCommon/jscallinvoker', :path => "../node_modules/react-native/ReactCommon"
  28. pod 'ReactCommon/turbomodule/core', :path => "../node_modules/react-native/ReactCommon"
  29. pod 'Yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
  30. pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
  31. pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
  32. pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
  33. pod 'react-native-webview', :path => '../node_modules/react-native-webview'
  34. target 'demoTests' do
  35. inherit! :search_paths
  36. # Pods for testing
  37. end
  38. use_native_modules!
  39. end
  40. target 'demo-tvOS' do
  41. # Pods for demo-tvOS
  42. target 'demo-tvOSTests' do
  43. inherit! :search_paths
  44. # Pods for testing
  45. end
  46. end