Gradle 及 插件 对应关系

 buildscript {
        repositories {
            // Gradle 4.1 and higher include support for Google's Maven repo using
            // the google() method. And you need to include this repo to download
            // Android Gradle plugin 3.0.0 or higher.
            google()
            ...
        }
        dependencies {
        	// 插件版本
            classpath 'com.android.tools.build:gradle:3.6.1'
        }
    }
# gradle版本(gradle-wrapper.properties文件中配置)
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-all.zip
插件版本 所需的 Gradle 版本
1.0.0 - 1.1.3 2.2.1 - 2.3
1.2.0 - 1.3.1 2.2.1 - 2.9
1.5.0 2.2.1 - 2.13
2.0.0 - 2.1.2 2.10 - 2.13
2.1.3 - 2.2.3 2.14.1+
2.3.0+ 3.3+
3.0.0+ 4.1+
3.1.0+ 4.4+
3.2.0 - 3.2.1 4.6+
3.3.0 - 3.3.2 4.10.1+
3.4.0 - 3.4.1 5.1.1+
3.5.0+ 5.4.1 - 5.6.4
3.6.0+ 5.6.4+

Gradle 全版本

插件版本升级导致报错:API ‘variantOutput.getProcessManifest()’ is obsolete
方案一:回退插件版本到3.2
方案二:等待相关依赖作者更新适配

版本对应关系官方说明

你可能感兴趣的:(AndroidStudio)