Does anyone know how to set kotlin compiler args i...
# android
s
Does anyone know how to set kotlin compiler args in gradle?
t
Something like that:
Copy code
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
        kotlinOptions {
            freeCompilerArgs += [
                    '-progressive'            ]
        }
}
👍 1