react-native link 报错

react-native link (0.50版本后)

rnpm-install info Linking react-native-picker ios dependency 
rnpm-install ERR! Something went wrong while linking. Error: Cannot read property 'match' of undefined 
Please file an issue here: https://github.com/facebook/react-native/issues 

解决方法 :原因是在iOS的中已经适应了CocoaPods 如果你的iOS项目使用的是CocoaPods(包含Podfile),链接库有podspec文件,那么反应式本地链接将使用Podfile链接库. 那么此时需要在 Podfile文件end 前加入 # Add new pods below this line

15279965930211.jpg

加上这句话后再执行 react-native link即可解决问题

你可能感兴趣的:(react-native link 报错)