Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
276 views
in Technique[技术] by (71.8m points)

android - Latest version of gradle can't be found

The latest version of Gradle is 2.14.1, right? Therefore, I have this:

gradle-wrapper.properties

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

gradle.build

buildscript {
    repositories {
        mavenCentral()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.14.1'
    }
}

But Android studio says it can't find it.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

The version of the Android Gradle Build tool is completely independent of Gradle.

For example, yes, the recommended Gradle is 2.14.1 or higher, but the latest stable Android Gradle Build tool is 2.2.2

classpath 'com.android.tools.build:gradle:2.2.2'

EDIT (Mar. 2017) versions are now 3.3 or higher & build tool 2.3


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...