I have a data class that implements an Interface and delegates its implementation to a delegate. When I let this interface extend Parcelable and add @Parcelize annotation to my class I get a warning in the IDE, which I believe is wrong. See below:
Shouldn’t it say “Delegating ‘Parceleable’ is not allowed”?
Here’s my interface: