In my project I use AutoValue for my old model classes. I started using Kotlin and I want to use Data Classes instead of AutoValue. I want to disable the obfuscation for all Data classes in my Data layer but to keep obfuscating the other classes in the package.
Is there a way to do this?
I would expect to have something like this in my Proguard file:
-keepclassmembers data class example.data_layer.** { *; }