I want to exclude this class from being obfuscated by ProGuard
- com.example.myapp.ThisParticularClass.java
How can I do that?
I looked into other answers but they are about packages, or class members or using gson annotations
PS: And what if ThisParticularClass extends from another class, should I keep the parent class from obfuscation as well?
Use such statement:
-keep class com.example.myapp.ThisParticularClass
or:
-keep public class * extends com.example.myapp.ThisParticularClass
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With