最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

android studio - Configure an action for tasks with name starting with string - Stack Overflow

programmeradmin0浏览0评论

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.

发布评论

评论列表(0)

  1. 暂无评论