buildTypes {
debug {
minifyEnabled false
copy {
from file('build/outputs/') //可以是文件也可以是目录
into getRootProject().getBuildDir().path + '/rootOutputs/' //目标路径
include '**/*.apk' //选择要复制的文件
include '**/*.json' //选择要复制的文件
exclude { detail -> detail.file.name.contains('json') } //排除
rename { 'aaa.apk'} //重命名
}
}
}
网友评论