gpt4 book ai didi

android - 创建所有应用程序源的zip文件,不包括构建文件

转载 作者:行者123 更新时间:2023-12-03 05:44:13 24 4
gpt4 key购买 nike

要创建Android项目的zip文件,以下任务会有所帮助

task zip(type: Zip) {
from '.'
archiveName 'zip.zip'
dependsOn 'clean'
destinationDir = file('..')
}

它工作正常,但并不总是调用 clean任务,因此zip文件中有时包含 build目录。尽管 Creating zip of android project along with its dependencies through gradle可能是一种解决方法,但很高兴知道:

为什么不总是触发 clean任务?

最佳答案

Zip task具有excludes参数:

task zip(type: Zip) {
from '.'
archiveName 'submission.zip'
destinationDir = file('..')
excludes = ['**/gradle.properties', '**/build/**', '**/gen/**', '**/.idea/**', '**/.gradle/**', '**/other_dir_name/**']
}

增加的好处:不会每次都删除并重新创建文件。

关于android - 创建所有应用程序源的zip文件,不包括构建文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50913307/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com