Hello! I ve created a KSP processor and everything...
# ksp
v
Hello! I ve created a KSP processor and everything goes fine! It generates the classes that I want. The problem is that I want to use it only during testing, so when I change ksp into kspTest the classes are not generated anymore. Is there any limitation/issue? Should I generate these classes in my app and let proguard do its job while having these classes accessible to my tests?
y
It should work but keep in mind, ksp test processor can only process sources in the test code, not the main
👍 1