elizarov
09/28/2017, 7:16 AMandroid.os.Parcelable
interface, so if you have val obj: MyData = xxx
and MyData
is marked with @Parcelize
, then you can write parcel.writeValue(obj)
with parcel.readValue()
and it’s going to work out-of-the box.