react-native run-android无法正常工作,无法从资产加载脚本,错误:ENOSPC:设备上没有剩余空间

时间:2018-09-13 07:26:55

标签: android react-native react-native-android

在android设备上运行应用的步骤:  1. cd(项目目录)  2. react-native run-android

attached screenshot issue

为解决此问题,我使用了以下提到的命令:

1.(in project directory) mkdir android/app/src/main/assets
2. react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res

此后,我遇到了以下问题:“错误:ENOSPC:设备上没有剩余空间”,附加了屏幕截图。请检查一下。 issue screenshot here

2 个答案:

答案 0 :(得分:1)

尝试npm cache clear

如果它不起作用,请尝试此命令。

echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p

答案 1 :(得分:0)

尝试

1. cd(directory)
2. cd android
3. gradlew clean
4. cd ..
5. react-native run-android`