Does anyone have experience configuring proguard t...
# announcements
d
Does anyone have experience configuring proguard to play nice with jackson-module-kotlin? I think I need a way to -keepattributes conditionally (currently I have a
@KeepMembers
annotation) Ideally I can keep the kotlin metadata in those classes, or keep the local variable table for constructors so that it will work with Java 8 parameter names module.
I will solve this temporarily by giving my data class default constructor parameters and making all properties mutable.