I have a problem implementing parcelable in Kotlin...
# android
k
I have a problem implementing parcelable in Kotlin. I have two Kotlin classes say
class A(var b: B)
and
class B
. I want to implement parcelable for this class hierarchy but I get an IllegalArgumentException when I try to get the classloader like this:
Copy code
b = parcel.readParcelable(B::class.java.classLoader)
.