Podfile 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. platform :ios, '9.0'
  2. require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
  3. target 'decorate_touch' do
  4. # Pods for decorate_touch
  5. pod 'Bugly'
  6. pod 'FBLazyVector', :path => "../node_modules/react-native/Libraries/FBLazyVector"
  7. pod 'FBReactNativeSpec', :path => "../node_modules/react-native/Libraries/FBReactNativeSpec"
  8. pod 'RCTRequired', :path => "../node_modules/react-native/Libraries/RCTRequired"
  9. pod 'RCTTypeSafety', :path => "../node_modules/react-native/Libraries/TypeSafety"
  10. pod 'React', :path => '../node_modules/react-native/'
  11. pod 'React-Core', :path => '../node_modules/react-native/'
  12. pod 'React-CoreModules', :path => '../node_modules/react-native/React/CoreModules'
  13. pod 'React-Core/DevSupport', :path => '../node_modules/react-native/'
  14. pod 'React-RCTActionSheet', :path => '../node_modules/react-native/Libraries/ActionSheetIOS'
  15. pod 'React-RCTAnimation', :path => '../node_modules/react-native/Libraries/NativeAnimation'
  16. pod 'React-RCTBlob', :path => '../node_modules/react-native/Libraries/Blob'
  17. pod 'React-RCTImage', :path => '../node_modules/react-native/Libraries/Image'
  18. pod 'React-RCTLinking', :path => '../node_modules/react-native/Libraries/LinkingIOS'
  19. pod 'React-RCTNetwork', :path => '../node_modules/react-native/Libraries/Network'
  20. pod 'React-RCTSettings', :path => '../node_modules/react-native/Libraries/Settings'
  21. pod 'React-RCTText', :path => '../node_modules/react-native/Libraries/Text'
  22. pod 'React-RCTVibration', :path => '../node_modules/react-native/Libraries/Vibration'
  23. pod 'React-Core/RCTWebSocket', :path => '../node_modules/react-native/'
  24. pod 'React-cxxreact', :path => '../node_modules/react-native/ReactCommon/cxxreact'
  25. pod 'React-jsi', :path => '../node_modules/react-native/ReactCommon/jsi'
  26. pod 'React-jsiexecutor', :path => '../node_modules/react-native/ReactCommon/jsiexecutor'
  27. pod 'React-jsinspector', :path => '../node_modules/react-native/ReactCommon/jsinspector'
  28. pod 'ReactCommon/jscallinvoker', :path => "../node_modules/react-native/ReactCommon"
  29. pod 'ReactCommon/turbomodule/core', :path => "../node_modules/react-native/ReactCommon"
  30. pod 'Yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
  31. pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
  32. pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
  33. pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
  34. pod 'RNGestureHandler', :path => '../node_modules/react-native-gesture-handler'
  35. pod 'rn-fetch-blob', :path => '../node_modules/rn-fetch-blob'
  36. # pod 'react-native-image-picker', :path => '../node_modules/react-native-image-picker'
  37. # pod 'RNImageCropPicker', :path => '../node_modules/react-native-image-crop-picker'
  38. # pod 'RCTWeChat', :path => '../node_modules/react-native-wechat-zzly'
  39. # pod 'RNSyanImagePicker', :path => '../node_modules/react-native-syan-image-picker'
  40. # pod 'RNFileSelector', :path => '../node_modules/react-native-file-selector-zzly'
  41. # pod 'RCTClearCacheModule', :path => '../node_modules/react-native-clear-cache-zzly'
  42. pod 'RNFS', :path => '../node_modules/react-native-fs'
  43. pod 'react-native-webview', :path => '../node_modules/react-native-webview'
  44. pod 'react-native-camera', :path => '../node_modules/react-native-camera'
  45. pod 'RNCharts', :path => '../node_modules/react-native-charts-wrapper'
  46. target 'decorate_touchTests' do
  47. inherit! :search_paths
  48. # Pods for testing
  49. end
  50. use_native_modules!
  51. end
  52. target 'decorate_touch-tvOS' do
  53. # Pods for decorate_touch-tvOS
  54. target 'decorate_touch-tvOSTests' do
  55. inherit! :search_paths
  56. # Pods for testing
  57. end
  58. end