使用xCode v9.1在Sierra上运行本机项目。
完整错误:
CoreData: annotation: Failed to load optimized model at path '/Applications/Xcode.app/Contents/Applications/Instruments.app/Contents/Frameworks/InstrumentsPackaging.framework/Versions/A/Resources/XRPackageModel.momd/XRPackageModel 9.0.omo'
We couldn't boot your defined simulator due to an already booted simulator. We are limited to one simulator launched at a time.
Launching iPad Air (iOS 11.1)...
我试过了:
watchman watch-del-all
,rm -rf node_modules && npm install
,npm start -- --reset-cache
在xcrun simctl list
和xcrun simctl shutdown <booted simulator id>
取得了一些成功,因为&#34;模拟器已经启动错误消失了#34;但模拟器仍然没有显示。
这种情况间歇性地发生,有时会(看似)在我的结束时没有采取任何行动。这让我觉得它可能是xCode或react-native中的错误?在这一点上,我不知道如何解决这个问题。
答案 0 :(得分:5)
如问题中所述,问题是由于您环境中已经运行的模拟器而发生的。要解决此问题,需要以下内容:
ps aux | grep launchd_sim | grep -v grep | awk'{print}'
kill -9 {ProcessId}
react-native run-ios