Abhimanyu
08/31/2025, 3:55 AMThe type "<1>$*" is used in a field rule. The characters in this type are legal for the JVM, but unlikely to originate from a source language. Maybe this is not the rule you are looking for.
proguard
file from the lib.
# Keep `Companion` object fields of serializable classes.
# This avoids serializer lookup through `getDeclaredClasses` as done for named companion objects.
-if @kotlinx.serialization.Serializable class **
-keepclassmembers class <1> {
static <1>$* Companion;
}
# rest of the file
Abhimanyu
08/31/2025, 3:55 AMhfhbd
08/31/2025, 7:03 AM