Is there a quick hack I can do to get kapt to tell...
# kapt
g
Is there a quick hack I can do to get kapt to tell me how much time is spent for each annotation processor? I.e. I want to know which processors of the ones we use are the most expensive
1
g
As I remember there is
verbose
flag in Kapt that does what you need. Not 100% sure and don't remember how to apply it, maybe @yan could help
y
Add
kapt.verbose=true
to gradle.properties, and run Gradle build with
--info
or
--debug
.
g
Thanks 🙌