I'm trying to pass data from activity A to activity B through intent in Kotlin.
The problem is I have a videos: MutableList<Video>
and the intent.putParcelableArrayListExtra("VIDEOS", videos)
only accepts ArrayList<out Parcelable>
as arguments.
Questions
*. How do I send a mutableList data from activity A to activity B?
*. Or Do I have to convert it to ArrayList<Video>
?
PS: Video
implements Parcelable