React Native常见问题(不定时更新)

1、copy别人的代码运行报错file not found

解决方法:cd到项目目录

npm install
react-native upgrade
yarn link

xcode设置项:

build setting-Always Search User Paths(Deprecated) 设置为YES

2、运行react-native 工程时,出错:

xcrun: error: unable to find utility "instruments", not a developer tool or in PATH

解决方法:在 终端执行如下命令

sudo xcode-select -s /Applications/Xcode.app/Contents/Developer/

3、打开远程调试总会出现 这么一段话

Remote debugger is in a background tab which may cause apps to perform slowly……

解决方法:原来,只要把那个chrome的Tab页保持最前,窗口不要最小化就好了。

你可能感兴趣的:(技术)