I have a KMM library that use kotlinx.serialization for serialization.
Some Android application has a dependency to my library and it has an issue with proguard. This app has
minifyEnabled = true
and therefore some of my data classes are removed by proguard.
I was able to resolve that by adding a proguard rule to keep this classes, but it did work only when I apply this rule on the app side.
Wonder if it is even possible to have this rules on the library side so that app would not need to modify their proguard rules