赞
踩
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
}
这里我们将build.gradle(project)的repositories修改为
repositories {
google()
jcenter()
mavenCentral()
}
如果还是不可以,可以修改为阿里的库
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。