@Eugenio If an annotation processor performs codegen that should be expanded with other annotation processors, does it need to do anything special beside adding the annotations to codegen?
1 reply
@raulraja if you mean having multiple rounds of annotation processing after generating Kotlin code, you're out of luck: kapt only supports a single round for that, only generated Java code will be fed again in the processor! In this case though you're the one generating everything, so you are aware of the extra things to generate and can do it directly