Hi, I've got a query regarding the new Parcelable...
# announcements
s
Hi, I've got a query regarding the new Parcelable implementation in android-extensions which enables you to annotate a model class with @Pacelize. but I'm having issues using it, as my models contains @SerializedName annotation and there are Arraylist properties too. So can anyone help me out?
g
What kind issue do you have?
s
I can't seem to pass the list to other activity properly
sorry for the late reply as I was trying to make it work
val siteList: ArrayList<RoutesResponse.RouteSite> = it.routeSiteList
startActivity(intentFor<GatewayActivity>(KEY_ROUTE_SITES to siteList))
g
So what is you error?
s
there's no error...the bundle's empty
syntax for sending the list is right?
g
Try to reproduce this on minimal example, I don’t know what is routeSiteList and intentFor
s
i'm using anko