Hello! I have a annotation processor that generate...
# kapt
b
Hello! I have a annotation processor that generates some files. Now I want a gradle task to read those files and do things based on them. Is there an easy way to find those files? I'm hardcoding
generated/source/kapt
on the configuration of my task but it doesn't look safe. Is there something on the kapt gradle api I can use to get that path?
t
I think destinationDir is what you are looking for 🙂
b
That was it! Thank you :)
👍 1