Caused by: org.gradle.api.internal.artifacts.ivyservice.DefaultLenientConfiguration$ArtifactResolveE
异常:Caused by: org.gradle.api.internal.artifacts.ivyservice.DefaultLenientConfiguration$ArtifactResolveException: Could not resolve all files for configuration ':classpath'.起因:本来项目运行很方便,没有问题。随着要实现上拉抽屉+
异常:Caused by: org.gradle.api.internal.artifacts.ivyservice.DefaultLenientConfiguration$ArtifactResolveException: Could not resolve all files for configuration ':classpath'.
起因:本来项目运行很方便,没有问题。随着要实现上拉抽屉+viewpager的方式,遂网上找了个demo,然后装载到项目中,可以运行成功。本来以为没事,第二天到公司运行我自己的项目,就莫名其妙的报异常了。我晕,编译了好几次都不管用。网上找,比较有用的是这篇:解决Android Studio的“org.gradle.api.internal.artifacts.ivyservice.DefaultLenientConfiguration$Artifact”
这篇文章中的方法,我按照操作试了,但还是不行。真挺痛苦的呀!
然后。。然后。。然后。。然后。。
几个然后足以表达痛苦之情,最后,我在这篇文章中的评论里,找到了一个回复,我还专门给其留了个言,必须赞下。
为了方便朋友们解决问题,先放文章链接:https://www.jb51.net/article/182527.htm
具体方法如下:
一,在项目根目录下的build.gradle中,注释的两行,是原来的,换成下方指定url的方式。注意
buildscript和allprojects两处都要修改。
buildscript {
repositories {
// google()
// jcenter()
maven { url 'http://maven.aliyun.com/nexus/content/repositories/google' }
maven { url 'http://maven.aliyun.com/nexus/content/repositories/jcenter'}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
// google()
// jcenter()
maven { url 'http://maven.aliyun.com/nexus/content/repositories/google' }
maven { url 'http://maven.aliyun.com/nexus/content/repositories/jcenter'}
}
}
二,然后点击sync project with gradle files 。这个按钮有两处地方,点哪个都可以。
一处是在顶部工具栏:如图
另一处是在菜单File打开后,即可找到
三,就是上图中的2了,清除缓存并重启IDE
四,我是重启了一次就解决了,如果你没有解决,多次编译试试,再试试清缓存重启。
最后,写完这篇,赶紧继续码代码去了
更多推荐
所有评论(0)