Basically at a core my question is "I'm using kapt...
# kapt
e
Basically at a core my question is "I'm using kapt to run a processor from a project. That project has a dependency on another project in my multi-project. Is there a way to have kapt run against that project dependency, but generate files in the current project"?
m
Try to set your annotation class’ annotation to @Retention(AnnotationRetention.RUNTIME), or maybe you can apply your kapt to the project where the annotated class is in and use the generated class directly?
e
tried it, didn't work unfortunately