설명 없음

Podfile 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. platform :ios, '9.0'
  2. require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
  3. target 'ViewShotExample' do
  4. # Pods for ViewShotExample
  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. target 'ViewShotExampleTests' do
  34. inherit! :search_paths
  35. # Pods for testing
  36. end
  37. use_native_modules!
  38. end
  39. target 'ViewShotExample-tvOS' do
  40. # Pods for ViewShotExample-tvOS
  41. target 'ViewShotExample-tvOSTests' do
  42. inherit! :search_paths
  43. # Pods for testing
  44. end
  45. end