对于iOS。有react-native link
,然后将节点模块的.xcodeproj
拖到Xcode AKA的Libraries
文件夹中。手动链接。
我已经看到了一些解决方案,其中以我正在使用react-native-camera
的示例为例,将节点模块视为吊舱。
在这种情况下,我用Podfile
写:pod 'react-native-camera', :path => '../node_modules/react-native-camera'
。
为什么这是一个相当大的方法?好处是什么,而不是手动链接,这是杀手级解决方案吗?