Vitali Plagov
06/29/2022, 12:35 PM-Xbackend-threads=4
. But it doesn’t affect the compilation time regardless of number of threads I specify. Am I doing something wrong or missing?
compileKotlin {
kotlinOptions {
jvmTarget = JavaVersion.VERSION_11
freeCompilerArgs = ["-Xuse-k2", "-Xbackend-threads=4"]
}
}
dmitriy.novozhilov
06/29/2022, 12:38 PMudalov
06/29/2022, 1:01 PMkotlin.daemon.jvmargs=-Xmx...
in gradle.properties
)Vitali Plagov
06/29/2022, 1:06 PM