admin管理员组文章数量:1344957
In my module build.gradle.kts
file, in Android Studio, I have the following:
afterEvaluate {
tasks.named("assembleDebug").configure {
finalizedBy(myCopyTask)
}
tasks.named("assembleRelease").configure {
finalizedBy(myCopyTask)
}
}
This works as expected.
However, I have been trying to combine these two configurations into a single statement like the following (which doesn't compile)
afterEvaluate {
tasks.find { it.name.startsWith("assemble") }?.configure {
finalizedBy(myCopyTask)
}
}
Please advise on how this can be done in Kotlin DSL. Any help would be appreciated.
本文标签: android studioConfigure an action for tasks with name starting with stringStack Overflow
版权声明:本文标题:android studio - Configure an action for tasks with name starting with string - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743783636a2538287.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论