Pass list of objects in Intent using Kotlin

1 · Law Gimenez · May 21, 2021, 6:03 a.m.
Every Android developer is familiar with passing data between Activities using Bundle. The old Java way was to implement Parcelable class and then you override all the required methods. See example below. You can read more of the details here. I’m not really a fan of this type of implementation because it will make myContinue reading "Pass list of objects in Intent using Kotlin"...