```This class implements Parcelable but does not p...
# android
s
Copy code
This class implements Parcelable but does not provide a CREATOR field less... (Ctrl+F1) 
According to the Parcelable interface documentation, "Classes implementing the Parcelable interface must also have a static field called CREATOR, which is an object implementing the Parcelable.Creator interface."
I am having this problem trying to make a enum class to Parcelable with @Parcelize tag. Any idea to solution this? Thanks