``` allprojects { tasks.withType(org.jetbrains.k...
# android
j
Copy code
allprojects {
  tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
    kotlinOptions {
      freeCompilerArgs += [
          '-progressive'
      ]
    }
  }
}
in root
build.gradle
👍 3
d
Merci!
o
Use
+=
, otherwise you will erase any other args you might set in other parts of the script.
2
d
Done! Thank you very much! Also a nice feeling, that the project still compiles without changes