找不到com.android.tools.build:gradle:3.0.1

时间:2018-01-30 14:29:18

标签: android gradle

当我尝试使用gradle包装器构建项目时,我收到此错误:

./gradlew

FAILURE: Build failed with an exception.

* What went wrong:
A problem occurred configuring project ':app'.
> Could not resolve all files for configuration ':app:classpath'.
   > Could not find com.android.tools.build:gradle:3.0.1.
     Searched in the following locations:
         https://maven.fabric.io/public/com/android/tools/build/gradle/3.0.1/gradle-3.0.1.pom
         https://maven.fabric.io/public/com/android/tools/build/gradle/3.0.1/gradle-3.0.1.jar
         https://jcenter.bintray.com/com/android/tools/build/gradle/3.0.1/gradle-3.0.1.pom
         https://jcenter.bintray.com/com/android/tools/build/gradle/3.0.1/gradle-3.0.1.jar
     Required by:
         project :app

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

* Get more help at https://help.gradle.org

同一项目在Android Studio中构建正常。

我已经检查了thisthis,但我正在使用gradle wrapper 4.1版,添加了google()存储库,甚至尝试设置android.enableAapt2=false。还有其他提示吗?感谢。

我的根build.gradle文件:

 // Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        google()
        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()
    }
}

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

我的gradle-wrapper.properties文件:

distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip

更新:加布里埃尔是对的。我还要在app/build.gradle file

中添加存储库
...
buildscript {
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.1'
    }
}
...

我想我对此问题感到困惑“要在构建中添加其中一个库,请在here中的顶级build.gradle文件中包含Google的Maven存储库”

3 个答案:

答案 0 :(得分:9)

只想留下额外的小费。当我安装Android Studio时,我在某处读到了建议保留此配置(使用' +'符号)

build.gradle(项目)

dependencies {
        classpath 'com.android.tools.build:gradle:+'
        .....
        #more lines here
}

但是,我使用的项目使用旧版本的gradle,此行总是请求最新版本。我花了一段时间才弄明白。

答案 1 :(得分:0)

检查您在Android Studio上的代理设置

  

文件>设置>外观

  

行为>系统设置> HTTP代理

答案 2 :(得分:0)

这是我解决问题的方式。 更改root build.gradle文件:

EventLoop