Also, often times, annotations module is also not an Android module so the processor can depend on it
d
Dutch
01/14/2022, 9:18 AM
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
yigit
01/14/2022, 6:46 PM
Then you can convert your annotations to Android but processor needs to load them via lookup
d
Dutch
01/14/2022, 8:01 PM
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