可能是卸载组件没有unlink导致:
卸载的时候特别注意,如果卸载的组件有link的,uninstall之前一定要先unlink,否则运行项目会报错的(如果你没有在uninstall之前先unlink且运行已经报错了,重新按照安装卸载流程再走一遍就ok了)。
安装:
1,正确的安装方式是 npm install xxx --save,经常看到许多组件安装文档上后面没有 --save,如果没有建议加上 否则组件信息不会出现在package.json中,导入组件的时候可能会找不到路径。
2,安装完成后执行一下 react-native link xxx。
卸载:
1,在卸载之前先执行 react-native unlink xxx。
2,然后在执行 npm uninstall xxx --save 别忘了加--save。
else
alipayModule的问题:
xcode版本问题
在这里 https://developer.apple.com/download/more/ 把 xcode 的低版本下载下来,然后用低版本的 xcode 运行项目,问题就不会出现了。
同时别卸载当前的 10.2 版本,因为会引起 terminal 的 git 错误。
之后你如果遇到这个问题:error: The Xcode build system has crashed 就看这里:https://stackoverflow.com/questions/50870787/xcode-9-4-unexpected-service-error-the-xcode-build-system-has-crashed