新工程Failed to resolve: xxx

2019-11-08  本文已影响0人  转岗做JAVA

第一次用Android Studio创建新工程时,Build直接失败,瞬间懵逼,这家伙不按套路出牌呀,错误如下:

Failed to resolve: junit:junit:4.12
Show in File
Show in Project Structure dialog


Failed to resolve: com.squareup:javawriter:2.1.1
Open File
Show in Project Structure dialog


Failed to resolve: org.hamcrest:hamcrest-library:1.3
Open File
Show in Project Structure dialog


Failed to resolve: org.hamcrest:hamcrest-integration:1.3
Open File
Show in Project Structure dialog


Failed to resolve: com.google.code.findbugs:jsr305:2.0.1
Open File
Show in Project Structure dialog

搜索一番网上主要有三种解法:
1.暴力法,直接删除。本人亲测无效,尴尬😅。
2.艰苦奋斗法,一个个去下载包引入。本人不想去试,这做法感觉像是回到了原始社会。
3.移花接木法,修改repositories的来源。这种做法看上去是最合理的方式,也尼玛是坑最多的方式,我试了好几种替换方法都无效,最终在坚持不懈的努力下终于成功了。

// 整个project级别的build.gradle文件如下:
buildscript {
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.2.0'
    }
}

allprojects {
    repositories {
        google()
        jcenter()
        // 这个地方是新加的
        mavenCentral()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

该项目诞生上海,未翻墙。有遇到类似问题的同学们要坚信修改repositories来源就一定能解决,要是引用的库需要翻墙,或者嫌弃国外源慢,用国内的镜像源一定可以解决。

上一篇下一篇

猜你喜欢

热点阅读