if I were using `@Parcelize` and had this member `...
# android
a
if I were using
@Parcelize
and had this member
val someMap: Map<String, Any>
, do I need to add an
@TypeParceler
it feels weird given the presence of
Parcel#writeMap
welp I get a
Type is not directly supported by 'Parcelize'. Annotate the parameter type with '@RawValue' if you want it to be serialized using 'writeValue()'
looks like writeValue turns into writeInt + writeMap
so I guess I should use
@RawValue