I'm trying to help another team at my company spee...
# kapt
s
I'm trying to help another team at my company speed up their build. My team has avoided annotation processors with Kotlin like the plague, so I'm not familiar with kapt. I'm seeing kapt take about 9 seconds for incremental builds, which is what is making their incremental builds take so long. It's only processing Dagger, and Butterknife, so I'm surprised it's so slow. How do I know if I'm using kapt3? I've got
apply plugin: 'kotlin-kapt'
for the latest stable kotlin (1.1.51), and then we are using
kapt
in the dependencies section to compile the annotation processors.
a
What version are you using for
kotlin-gradle-plugin
?
s
1.1.51