Also, often times, annotations module is also not ...
# ksp
y
Also, often times, annotations module is also not an Android module so the processor can depend on it
d
Thats what I thought,thank you. Only converted them to Android since my annotation module needed to import "androidx.sqlite.db.SimpleSQLiteQuery" which is an Android package. The import simply didn't work in a normal module
y
Then you can convert your annotations to Android but processor needs to load them via lookup
d
For simplicity I split my android library in 2 libraries. One with the Android packages and one with pure kotlin. Thank you very much for your help and input @yigit
👍 1