且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

React Native应用程序-在Android 8真实设备上启动时崩溃/关闭

更新时间:2023-01-24 21:19:06

您是否尝试清除缓存?通常是这样的:

Did you try to clear the cache? Usually with something like this:

rm package-lock.json
rm -rf node_modules
rm -rf $TMPDIR/metro-*
rm -rf $TMPDIR/haste-map-*
npm cache clean
npm install
npm start -- --reset-cache

但是您可能只需要删除都会和急速地图缓存.抱歉,如果您已经尝试过.

But you probably need to remove only the metro and haste map cache. Sorry if you already tried that.