Files
tldr/pages.zh/common/gradle.md

32 lines
484 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# gradle
> 一个开源构建自动化系统。
> 更多信息:<https://gradle.org>。
- 编译一个包:
`gradle build`
- 排除测试任务:
`gradle build -x {{test}}`
- 以离线模式运行以防止Gradle在构建期间访问网络
`gradle build --offline`
- 清理构建目录:
`gradle clean`
- 在发布模式下构建Android包APK
`gradle assembleRelease`
- 列出主要任务:
`gradle tasks`
- 列出所有任务:
`gradle tasks --all`