Vladimir Tagakov
08/28/2023, 7:22 PMimport some.unresolvable.class.Name
@MyAnnotation(classes = [Name::class])
//....
some.unresolvable.class.Name
is missing from the compilation classpath and I didn’t have KSP it would not compile. But KSP runs smoothly and when I try to query classes
argument of @MyAnnotation
it returns an empty list as if everything is ok. How I can guard agains such a case?Vladimir Tagakov
08/28/2023, 7:38 PMvalidate
on annotation it returns trueJiaxiang
08/28/2023, 8:11 PMVladimir Tagakov
08/28/2023, 8:20 PM