【原】React Native踩坑系列之--Configuration with name 'default' not found react-native

前端之家收集整理的这篇文章主要介绍了【原】React Native踩坑系列之--Configuration with name 'default' not found react-native前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

由于项目需要,一口气引入了react-native-camera,react-native-wechat和react-native-yunpeng-alipay这3个库。

将各个库都配置好后,运行react-native run-android,报出错误信息

Configuration with name 'default' not found react-native。

将node_modules目录删掉,重新执行npm install安装依赖库。

rm -rf node_modules && npm install

问题解决

估计是因为依赖混乱导致的。

另外,react-native-yunpeng-alipay库还有其他问题,后面继续解决(坑 ̄へ ̄)。

原文链接:https://www.f2er.com/react/303012.html

猜你在找的React相关文章