Can someone please explain me the difference betwe...
# android
d
Can someone please explain me the difference between
@kotlinx.parcelize.Parcelize
and
@kotlinx.android.parcel.Parcelize
annotation? They have exact same documentation and both come from
kotlin-parcelize
gradle plugin. Android Studio warns that later one is deprecated but I can clearly see that
kotlinx.android.parcel.Parcelize.kt
is not annotated with
@Deprecated
, so where is the warning coming from?
d
Thanks @zsmb for clarifying