生成APK时出现错误消息:该项目正在使用不受支持的gradle版本。我正在使用Android Studio 3.5版本。
我试图更改构建gradle类路径以匹配gradle-wrapper.properties中的distributionUrl,但错误仍然存在。
首先,在项目级设置中,选择“使用默认gadle包装器”。
Build.gradle文件:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
渐变包装文件:
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
该项目正在使用不受支持的Gradle版本。 请在项目的Gradle设置或项目的Gradle包装器(如果适用)中指向受支持的Gradle版本。
答案 0 :(得分:0)
从您使用的旧版gradle(可能已被贬值)来看,升级gradle可以解决此问题classpath 'com.android.tools.build:gradle:3.4.2'
和distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip