jw
10/29/2018, 8:00 PMallprojects {
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
kotlinOptions {
freeCompilerArgs += [
'-progressive'
]
}
}
}
in root build.gradle
Daniel
10/29/2018, 8:00 PMorangy
+=
, otherwise you will erase any other args you might set in other parts of the script.Daniel
10/29/2018, 8:06 PM