Vinod Rai
09/29/2020, 6:55 AM-keepattributes *Annotation*, InnerClasses
-dontnote kotlinx.serialization.SerializationKt
-keep,includedescriptorclasses class com.yourcompany.yourpackage.**$$serializer { *; } # <-- change package name to your app's
-keepclassmembers class com.yourcompany.yourpackage.** { # <-- change package name to your app's
*** Companion;
}
-keepclasseswithmembers class com.yourcompany.yourpackage.** { # <-- change package name to your app's
kotlinx.serialization.KSerializer serializer(...);
}
The package name is changed,..getting exception in kotlinx.serialization 1.0.0-RC
Serializer for class 'e' is not found.
Mark the class as @Serializable or provide the serializer explicitly.
Data classes are in shared code.
Why progaurd configuration is not working with minify enabled. can anyone help what I am missing here?Shawn Witte
09/29/2020, 8:42 AMVinod Rai
09/29/2020, 8:52 AM