!!!温馨提示:为了方便找到问题,请在本页按ctrl+f(command+f)进行关键字搜索
Android
MainActivity中没有getPackages()方法重载
现在网上很多编写自定义原生模块给JS调用的教程,但是很多教程的RN版本是较老的,老版本中(目前知道0.28及0.28以前),RN自动生成的Android项目中,MainActivity中有getPackages()方法重载,但是在0.29及0.29以后,需要再MainApplication中调用
———————————-华丽的分割线———————————–
error: bundling: UnableToResolveError: Unable to resolve module react/lib/ReactDebugCurrentFrame
报错代码
error: bundling: UnableToResolveError: Unable to resolve module `react/lib/ReactDebugCurrentFrame`
from ....\node_modules\react-native\Libraries\Renderer\src\renderers\shared\stack\reconciler\ReactCompositeComponent.js: Module does not exist in the module map or in these directories:
...\node_modules\react\lib
原因
如果项目”react-native”: “^0.43.X”那么选用react “react”: “16.0.0-alpha.6”
解决办法
参考:https://github.com/facebook/react-native/issues/13017 ———————————-华丽的分割线———————————–