错误:找不到com.android.tools.build:gradle:2.1.0-alpha1

时间:2016-04-04 08:45:20

标签: android android-studio android-gradle

我更新我的android工作室并重新启动它,它工作正常,但当我尝试imoprt我以前的项目时,它显示错误这样的事情:

这是错误的快照......

Error during import the project

这是我的gradle文件......

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

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.1.0-alpha1'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

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

3 个答案:

答案 0 :(得分:1)

尝试使用其他gradle分发。

gradle-wrapper.properties文件夹中打开gradle/wrapper,在distributionUrl中设置另一个有用的文件夹,例如:

 distributionUrl=https\://services.gradle.org/distributions/gradle-2.8-all.zip

修改

在全局build.gradle

中尝试使用此类路径
dependencies {
    classpath 'com.android.tools.build:gradle:1.5.0'

    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}

答案 1 :(得分:0)

我今天遇到了这个问题,当我将Android插件版本更新到最近的版本时,它确实有效。因此,我认为当您遇到此问题时,您可以将Gradle和Android插件版本更新到最新版本。它总是有效的。这是我的配置:

This is my configuration

答案 2 :(得分:0)

我将Android Studio升级到2.2.0时遇到了同样的问题。我更改了build.gradle文件的classpath属性,但与上面的答案的不同之处在于我没有放置Gradle的版本,而是Android Studio的版本,并且它有效。请注意,您还需要在file>>settings>>build,execution,deployment>>gradle

中验证Ggradle主路径
buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.2.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

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