1
hu8245 2022-10-20 12:01:08 +08:00
白嫖啊?直接看 groovy 语法啊
|
2
janus77 2022-10-20 14:13:33 +08:00
这不是 shell 脚本的事么,直接执行 gradlew assembleProduction1Release 这个命令啊。有几个你就执行几个。跟 gradle 脚本没关系吧
|
3
winterbells 2022-10-20 14:23:17 +08:00 via Android
直接写个脚本文件不就行了
cmd 或者 shell 里 ./gradlew assemble1 |
4
XXWHCA 2022-10-20 17:32:53 +08:00
如果你的 product 就这几个,你可以直接运行./gradlew assembleRelease
如果是只需要运行着 5 个 product ,那就在后面拼接就行了,gradle 会按顺序执行的,./gradlew assembleProduction1Release assembleProduction2Release assembleProduction3Release ... |
5
yuanxiaosong 2022-10-23 20:55:29 +08:00
task assembleProduction1Release(type: Copy) {
} assemble.finalizedBy(assembleProduction1Release) task assembleProduction2Release(type: Copy) { } assembleProduction1Release.finalizedBy(assembleProduction2Release) …… |