当前位置:   article > 正文

Could not resolve all artifacts for configuration ‘:classpath‘安卓报错解决方法

could not resolve all artifacts for configuration ':classpath'. > could not

跑一个项目,从谷歌下载一个aar怎么也下载不下来,总是失败,添加阿里云镜像打开项目编译后发现:Could not resolve all artifacts for configuration ':classpath';不能解析classpath,然后常规clean、rebuild、offline work、修改本地gradle...一番操作之后,依然没用。最后上google寻求帮助,成功解决了这个问题原因还是网络问题,资源库加载不下来。

解决办法如下:在根目录的build文件里加上这几句镜像代码,重新编译解决,墙.是硬伤

  1. repositories {
  2. // google()
  3. maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
  4. maven { url 'http://maven.aliyun.com/nexus/content/repositories/jcenter' }
  5. maven { url 'http://maven.aliyun.com/nexus/content/repositories/google' }
  6. maven { url 'http://maven.aliyun.com/nexus/content/repositories/gradle-plugin' }
  7. jcenter()
  8. maven { url "https://jitpack.io" }
  9. }
  1. allprojects {
  2. repositories {
  3. maven { url 'http://maven.aliyun.com/nexus/content/groups/public/
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/188940
推荐阅读
相关标签
  

闽ICP备14008679号