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.