Keep seeing this problem with databinding, been se...
# android-databinding
i
Keep seeing this problem with databinding, been searching on Google for over an hour now... curious if anybody has seen this error before. Any help is much appreciated. I have the
kotlin-kapt
plugin and all btw.
Copy code
error: package javax.annotation does not exist
import javax.annotation.Generated;
It is a Kotlin multiplatform project, below are the versions for the libraries i'm using:
Copy code
kotlinVersion = "1.3.70"
serialization = "0.20.0"
coroutines = "1.3.5"
ktor = "1.3.2"
kodein = "6.5.3"
moko = "0.6.0"
navigation = "2.3.0-alpha04"
a
There is also #multiplatform channel
👍 1
i
Ya I think this could be more closely related to databinding or even my JRE version, I dunno still struggling with it ha.
The only solution for now is to remove the
kotlin-kapt
plugin altogether. I can get away with it for now since I'm not using kapt heavily, but still looking for a more permanent solution.