当前位置:   article > 正文

Could not resolve all artifacts for configuration ':classpath'.

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

出现的问题

Caused by: org.gradle.api.internal.artifacts.ivyservice.DefaultLenientConfiguration$ArtifactResolveException: Could not resolve all artifacts for configuration ‘:classpath’.

解决方法

这句话的意思可能是不能找到classPath所指定的资源,这是我们需要对repositories进行修改。
我在将dependencies修改为以下后出现了这个问题:

dependencies {
        classpath 'com.android.tools.build:gradle:3.6.3'
        
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

这里我们将build.gradle(project)的repositories修改为

repositories {
        google()
        jcenter()
        mavenCentral()
    }
  • 1
  • 2
  • 3
  • 4
  • 5

如果还是不可以,可以修改为阿里的库

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/188946
推荐阅读
相关标签
  

闽ICP备14008679号