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