Ali
01/28/2022, 5:14 PMCaused by android.os.BadParcelableException: Parcelable protocol requires subclassing from Parcelable
is happening even my data class implement Parcelable
interface and annotate with @Parcelizee
, Any kind of hints/context would be appreciatedzsmb
01/28/2022, 5:17 PMAli
01/28/2022, 5:50 PMescodro
01/28/2022, 6:11 PMAli
01/28/2022, 6:35 PMproguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.txt")
or I need to do it explicitly for that module?Yves Kalume
01/29/2022, 3:48 PMproguard-rules
file by adding -keep class com.package.of.yourdataclasses** { *; }
don't forget to update the package name by using your own.