gradle/wrapper目录 gradle-wrapper.properties 文件对应的是脚本版本
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
根目录中 build.gradle 文件中 对应的 插件版本 如 7.4.2
buildscript {
ext.kotlin_version = '1.7.0'
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.android.tools.build:gradle:7.4.2'
}
}
插件版本 | 所需的 Gradle 版本 |
---|---|
8.4 (alpha) | 8.6-rc-1 |
8.3 | 8.4 |
8.2 | 8.2 |
8.1 | 8.0 |
8.0 | 8.0 |
7.4 | 7.5 |
插件版本 | 所需的 Gradle 版本 |
---|---|
7.3 | 7.4 |
7.2 | 7.3.3 |
7.1 | 7.2 |
7.0 | 7.0 |
4.2.0+ | 6.7.1 |
4.1.0+ | 6.5+ |
4.0.0+ | 6.1.1+ |
3.6.0 - 3.6.4 | 5.6.4+ |
3.5.0 - 3.5.4 | 5.4.1+ |
3.4.0 - 3.4.3 | 5.1.1+ |
3.3.0 - 3.3.3 | 4.10.1+ |
3.2.0 - 3.2.1 | 4.6+ |
3.1.0+ | 4.4+ |
3.0.0+ | 4.1+ |
2.3.0+ | 3.3+ |
2.1.3 - 2.2.3 | 2.14.1 - 3.5 |
2.0.0 - 2.1.2 | 2.10 - 2.13 |
1.5.0 | 2.2.1 - 2.13 |
1.2.0 - 1.3.1 | 2.2.1 - 2.9 |
1.0.0 - 1.1.3 | 2.2.1 - 2.3 |
参考
Gradle脚本版本查询
Gradle版本介绍
Gradle插件历史版本介绍
官网介绍
添加链接描述
添加链接描述
添加链接描述