Annotation processor doesn't execute (gradle)

886 Views Asked by At

I'm using gradle and I've written an annotation processor in the project itself and used @AutoService on it.

annotationProcessor 'com.google.auto.service:auto-service:1.0-rc5' compileOnly 'com.google.auto.service:auto-service:1.0-rc5' is in build.gradle file

I can see the generated javax.annotation.processing.Processor under build/classes/java/main/META-INF/services but the annotation processor does not execute. any ideas?

0

There are 0 best solutions below