gradle assemble 和 gradle build 任务有什么区别?

时间:2023-02-01
本文介绍了gradle assemble 和 gradle build 任务有什么区别?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

如果我没记错的话 gradle assemble 确实运行 gradle assembleDebuggradle assembleRelease,但我相信 gradle build 也一样,那么它们两者有什么不同呢?

If I am not wrong gradle assemble does run gradle assembleDebug and gradle assembleRelease, but I believe gradle build also does the same, so what are the different between them both?

推荐答案

assemble 将构建您的工件,而 build 将通过额外检查组装您的工件.

assemble will build your artifacts, and build will assemble your artifacts with additional checks.

build 依赖于 assemble,所以 buildassemble

build depends on assemble, so build is sort of a superset of assemble

您可以使用 --dry-run 标志查看将要执行的任务.例如

You can have a look on the tasks that will be executed by using the --dry-run flag. e.g.

gradlew build --dry-run

你会看到除了assemble之外,linttest也会被执行.

You will see that apart from assemble also lint and test will be executed.

这篇关于gradle assemble 和 gradle build 任务有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

上一篇:无法使用 gradlew 或 gradle 查看依赖关系树 下一篇:在项目“应用程序"中,已解决的 Google Play 服务库依赖项依赖于另一个确切版本

相关文章

最新文章