解决React Native报错:Cannot read property 'bindings' of null

http://www.blogdaren.com/post-2432.html

问题背景:

升级 React Native 0.55.4 -->  React Native 0.56.0 后,运行报错:Cannot read property 'bindings' of null

问题原因:

babel-preset-react-native版本过低造成,React Native 0.56.0 需要 [email protected] 版本

解决方案:

 
  1. [root@node1 demoProject] yarn remove babel-preset-react-native
  2. [root@node1 demoProject] yarn add [email protected]

猜你喜欢

转载自blog.csdn.net/qhexin/article/details/84585089