Jamie Taylor
01/31/2020, 11:01 AMkotlin.caching.enabled=true
org.gradle.caching=true
android.databinding.incremental=true
2. The Kotlin compiler is just really slow. The project is about 90% Java and 10% Kotlin, but on a clean build the Kotlin compile task takes about twice as long as the java compile task. The project also has a very small pure kotlin module containing three small files, and I just noticed on the scan that the kotlin compile task for that project is taking even longer than the kotlin compile for the main app.
I can't find any particularly helpful resources regarding kotlin compiler performance. If I could just see which files it was spending a lot of time on that might help.tapchicoma
01/31/2020, 12:07 PMkapt.incremental.apt=true
kotlin.parallel.tasks.in.project=true
Jamie Taylor
01/31/2020, 2:44 PMJamie Taylor
01/31/2020, 2:45 PMtapchicoma
01/31/2020, 4:29 PMorg.gradle.parallel=true
option? (not sure if it is enabled by default)Jamie Taylor
01/31/2020, 4:31 PMcristiangm
03/04/2020, 10:44 PMNicolas Lattuada
03/02/2021, 3:19 PMNicolas Lattuada
03/02/2021, 4:10 PM