https://kotlinlang.org logo
#random
Title
k

kirillrakhman

03/17/2016, 3:11 PM
what about
Copy code
project.afterEvaluate {
    project.tasks.findAll { task -> task.name.startsWith('compile') && task.name.endsWith('Kotlin') }.each { task ->
        task.experimentalIncremental = true
    }
}
2 Views