Hello developers,
I'm working on an extension project and here I'm using some enum classes. But the ProGuard is shirking the enum values even I'm using keep rules for that class.
-keep class com.buxi.csvparser.common.Model {
public protected *;
}
It's com.buxi.csvparser.common.Model a enum class and I want to keep this class with its values. Please help me to do it.
Thanks in advance