run-android : Configuration with name 'default' not found.

react-native 项目 run-android时报错:

Could not resolve all dependencies for configuration ':app:_debugApk'.
Configuration with name 'default' not found.

显示依赖配置有问题,进入Android配置文件:


run-android : Configuration with name 'default' not found._第1张图片
错误截图

删除框起来的那句,没有名为app的依赖需要include
这个错误就暂时过了
造成了新的问题,安装依赖的时候会一个个需要你确认安装。并且结果并没有讲工程安装在手机,只是显示了succes,
还是把那句加了回来。
换一个方案:
既然是android环境的问题,我选择了把android的SDK全部重新安装。
结果:
还是一样。看来网上的说法也不一定适合自己,那自己来检查一下把。
到项目的android目录下:

./gradlew  installDebug --debug
run-android : Configuration with name 'default' not found._第2张图片
截图

我这的问题是因为一个依赖包RCTAMapLocationPackage有问题,进而找到了react-native-android-location 包存在问题,新拷贝了一个替代掉了。ok,解决了。

你可能感兴趣的:(run-android : Configuration with name 'default' not found.)