Can someone help me figure out why I cant use data...
# multiplatform
i
Can someone help me figure out why I cant use data class in the KMP library? I get
Missing class java.lang.invoke.StringConcatFactory (referenced from: java.lang.String my.project.shared.repo.models.ExampleDataClass.toString())
. using JVM target 17. What other info would be relevant to help figure out the reason? minifyWithR8 is failing
Copy code
-keep class my.project.shared.repo.models.** { *; }

-keepnames class * extends android.os.Parcelable
-keepnames class * extends java.io.Serializable
I have this in proguard rules for both App and the library
126 Views