Hello! Is there any workaround to force KSP to ge...
# ksp
j
Hello! Is there any workaround to force KSP to get a class generated by a compiler plugin in FIR?
m
I doubt it? My current mental model is that KSP works with the AST that the user writes and
kotlinc
happens in a later stage. So I would say this cannot work by design. But I'm curious about it now.
j
I think the same, but just praying for a miracle
m
It's probably even more true now that KSP is uncoupled from
kotlinc
j
Indeed I was thinking if that would work would be with ksp1… which is unmaintained in the next versions
m
Migrate your KSP processor to a compiler plugin?
j
I am generating Room files, so I would need to migrate Room
💪 1
m
This is the way 🙂
e
j
The ksp task from one module depends on the output of another ksp task in another module or the whole compile Kotlin tasks?