I have a few annotations I've written for a project. Unfortunately some of the annotations depend on code generated by another annotation of mine.
Ironically after all the annotations run the code complies except for the kapt3 stubs... cuz unknown types.
is there anyway to fake this? If I put some annotations in a different gradle project, or any such can I control the order? I know which ones depend on which... I know it sounds ugly...
but so it a crap of error-prone boiler plate I'll have to type if this doesn't work.
Alternatively, is there a way to delete the stubs from my annotation processor?
Or am I just SOL and kapt is severally limited? (BTW, so is the new KSP AFAICT)
Thanks