美文网首页
[android]解决Android studio遇见Could

[android]解决Android studio遇见Could

作者: hulaye | 来源:发表于2018-06-19 11:56 被阅读0次

发生的错误:

Error:Could not find common.jar (android.arch.core:common:1.0.0).
Searched in the following locations:
    https://jcenter.bintray.com/android/arch/core/common/1.0.0/common-1.0.0.jar

修改的位置:Gradle Scripts --->build.gradle(Project:项目名)--->allprojects{}里面;
解决方法:

    repositories {
        maven{url"https://maven.google.com"}
        jcenter()//放到google后面加载
        maven{url 'https://jitpack.io'}
    }

另外gradle的版本和android插件版本也会影响,以下是版本对应图:


相关文章

网友评论

      本文标题:[android]解决Android studio遇见Could

      本文链接:https://www.haomeiwen.com/subject/egraeftx.html