ReactNative 错误: Module `AccessibilityInfo` does not exist in the Haste module map

ReactNative 开发中常见错误:

前言:ReactNative 开发中 博主 分别执行了

>react-native init zqDemo
>npm install
>react-native run-android

后报错 信息:

手机出现了红屏 并提示以下错误:

Loading dependency graph, done.
error: bundling failed: Error: Unable to resolve module `AccessibilityInfo` from `C:\Users\22945\Desktop\zqMeiTuan\node_modules\react-native\Libraries\react-native\react-native-implementation.js`: Module `AccessibilityInfo` does not exist in the Haste module map

错误提示:

Unable to resolve module `AccessibilityInfo` from `C:\Users\godha.pranay\project\node_modules\react-native\Libraries\react-native\react-native-implementation.js`: Module does not exist in the module mapThis might be related to https://github.com/facebook/react-native/issues/4968To resolve try the following:1. Clear watchman watches: `watchman watch-del-all`.2. Delete the `node_modules` folder: `rm -rf node_modules && npm install`.3. Reset Metro Bundler cache: `rm -rf $TMPDIR/react-*` or `npm start -- --reset-cache`.  4. Remove haste cache: `rm -rf $TMPDIR/haste-map-react-native-packager-*`.

几番搜索。发现是ReactNative版本问题。 分别执行下面命令即可解决:

react-native init AwesomeProject
cd AwesomeProject
react-native run-android
npm uninstall react-native
npm install –save react-native@0.55.4
react-native run-android
npm install –save babel-core@latest babel-loader@latest
npm uninstall –save babel-preset-react-native
npm install –save babel-preset-react-native@4.0.0
react-native run-android

一定要全部执行完,才可。

参考:

这里写图片描述

链接:
https://stackoverflow.com/questions/48756550/unable-to-resolve-module-accessibilityinfo-when-trying-to-create-release-bund


本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!

相关文章

立即
投稿

微信公众账号

微信扫一扫加关注

返回
顶部