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.
Dico
05/22/2019, 7:38 PM
I will solve this temporarily by giving my data class default constructor parameters and making all properties mutable.