This message was deleted.
# android
s
This message was deleted.
l
If you want to put your enum in a Bundle, you don't need to parcelize your enum. I suggest using
bundle.putSerializable(enum)
. See here: https://stackoverflow.com/a/5309967
j
Parcelize plugin allows me to annotate enum classes, so I suppose it should work… and Serializable is known to be slower than Parcels… so I would rather not…