Use of Parceler with Kotlin data class with constructor for serialization
问题 Is there a way to use Parceler with Kotlin data classes and constructor for serialization without using @ParcelProperty annotation for each field? If I try and use library like this: @Parcel data class Valve @ParcelConstructor constructor(val size: Int) I get Error:Parceler: No corresponding property found for constructor parameter arg0 . But if I add @ParcelProperty("size") it works just fine. Why is that? Update : There are other another way to use this library. I could just remove