Guys , Noob question here but how do I check the a...
# android
a
Guys , Noob question here but how do I check the annotation processor code of a library who processes annotation , for example dagger. I can only see the annotations in Android studio but I want to see the code gen part as well.
not kotlin but kotlin colored 3
j
This is a fairly old repo that I used while learning how the annotation processors work. It's very small and I hope it will help you understand what's behind the scene https://github.com/mitrejcevski/gendapter
e
Do you want to see generated code or code of the annotation processor?
a
@Eugen Martynov I want to see the code of the annotation processor. Sorry if that was not clear 😅
Thanks @jovmit, Will check it out
e
It is open sourced on github
or in google repository if it is from Google
a
But can’t I navigate to it in Android studio/ IDE , like for any other library I use
e
No, but you can not navigate also compiler plugins or compiler code itself
a
Cool, Thanks