Android——gradle插件配置方式——dependencies和plugins

引言

我们知道Android studio 需要gradle插件进行构建和编译,随着AGP的升级,引入gradle插件也发生了变化。旧版本通过build.gradle文件中dependencies代码块引入,新版本通过plugins代码块引入

一、旧版本引入方式dependencies

Android——gradle插件配置方式——dependencies和plugins_第1张图片

二、新版本引入方式plugins

plugins {
    id 'com.android.application' version '8.1.0' apply false
    id 'com.android.library' version '8.1.0' apply false
}

三、两种方式的插件对应仓库中心(以阿里云镜像仓库示例)

(1)dependencies


    com.android.tools.build
    gradle
    8.1.0-beta01
    pom

Android——gradle插件配置方式——dependencies和plugins_第2张图片

(2)plugins


    com.android.application
    com.android.application.gradle.plugin
    8.1.0-alpha09
    pom




    com.android.library
    com.android.library.gradle.plugin
    8.1.0-beta01
    pom

Android——gradle插件配置方式——dependencies和plugins_第3张图片

Android——gradle插件配置方式——dependencies和plugins_第4张图片

参考:

【1】Gradle学习笔记之插件_gradle 添加插件-CSDN博客

【2】仓库服务

【3】关于Gradle新版插件依赖方式_gradlepluginportal-CSDN博客

你可能感兴趣的:(android,android,plugins,dependenceies,gradle插件)