不与世俗为伍。哪怕这是自己许给自己的诅咒。
—— 宫崎骏 《红猪》
出现的问题
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()
}
如果还是不可以,可以修改为阿里的库