After setting minifyEnabled true in app build.gradle script I starded to receive this exception:
Caused by: java.lang.RuntimeException: Parcelable encountered IOException writing serializable object (name = some.package.SomeClass)
at android.os.Parcel.writeSerializable(Parcel.java:1767)
…
Caused by: java.io.NotSerializableException: kotlin.UNINITIALIZED_VALUE
Crash occurred when I try to pass class SomeClass : Parcelable to another activity.
I tried to whitelist all app classes with -keep class some.package.**.* { *; } but without succeed.