👋 Am I understanding correctly that KSP only works with one Gradle module? So a symbol processor cannot process annotated classes from other Gradle modules?
y
yigit
02/27/2021, 5:12 PM
it works in 1 compilation (source set) you can access your dependencies if they are dependencies of the compiled module but you cannot process them (e.g. cannot discover elements with annotations)
yigit
02/27/2021, 5:12 PM
same as javaAP
v
Vladislav Areshkin [IceRock]
02/27/2021, 5:29 PM
I see, thanks
g
gabrielfv
02/27/2021, 9:58 PM
How would one go about collecting metadata output from processed dependency modules and make it addressable in an aggregating module?