Android——gradle插件配置方式——dependencies和plugins
Dependencies
A rewrite of the old legacy software "depends.exe" in C# for Windows devs to troubleshoot dll load dependencies issues.
项目地址:https://gitcode.com/gh_mirrors/de/Dependencies
免费下载资源
·
引言
我们知道Android studio 需要gradle插件进行构建和编译,随着AGP的升级,引入gradle插件也发生了变化。旧版本通过build.gradle文件中dependencies代码块引入,新版本通过plugins代码块引入
一、旧版本引入方式dependencies
二、新版本引入方式plugins
plugins {
id 'com.android.application' version '8.1.0' apply false
id 'com.android.library' version '8.1.0' apply false
}
三、两种方式的插件对应仓库中心(以阿里云镜像仓库示例)
(1)dependencies
<dependency>
<groupId>com.android.tools.build</groupId>
<artifactId>gradle</artifactId>
<version>8.1.0-beta01</version>
<type>pom</type>
</dependency>
(2)plugins
<dependency>
<groupId>com.android.application</groupId>
<artifactId>com.android.application.gradle.plugin</artifactId>
<version>8.1.0-alpha09</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>com.android.library</groupId>
<artifactId>com.android.library.gradle.plugin</artifactId>
<version>8.1.0-beta01</version>
<type>pom</type>
</dependency>
参考:
【1】Gradle学习笔记之插件_gradle 添加插件-CSDN博客
【2】仓库服务
GitHub 加速计划 / de / Dependencies
8.61 K
704
下载
A rewrite of the old legacy software "depends.exe" in C# for Windows devs to troubleshoot dll load dependencies issues.
最近提交(Master分支:2 个月前 )
1997a400 - 2 年前
2f423539 - 2 年前
更多推荐
已为社区贡献4条内容
所有评论(0)