操作:最初,我的应用程序可以正常使用,但是在将台式机上创建的本机应用程序移动到另一个文件夹后,我遇到错误了
错误:使用命令react-native run-ios
从vscode运行应用程序时,运行时尚未准备好在模拟器上进行调试
尝试过: npm start
答案 0 :(得分:0)
您可以尝试删除android,ios和node modules文件夹并运行以下命令
1.> npm install // to get dependecies loaded
2.> react-native upgrade // to create ios and android folder
3.> react-native link // to link the libraries
4.> react-native run-android (or) > react-native run-ios
答案 1 :(得分:0)
可能的Moving Create React App folder breaks working app欺骗
如果上述方法没有帮助,删除ios / build文件夹并再次运行对我来说是有效的。
即从您的新根文件夹
rm -r ios/build
npx react-native run-ios