暫無描述

Podfile 2.7KB

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