android - How to exclude this particuar class from ProGuard obfuscation -


i want exclude class being obfuscated proguard

- com.example.myapp.thisparticularclass.java 

how can that?

i looked other answers packages, or class members or using gson annotations

ps: , if thisparticularclass extends class, should keep parent class obfuscation well?

use such statement:

-keep class com.example.myapp.thisparticularclass 

or:

-keep public class * extends com.example.myapp.thisparticularclass 

Comments

Popular posts from this blog

sql - can we replace full join with union of left and right join? why not? -

javascript - Parallax scrolling and fixed footer code causing width issues -

iOS: Performance of reloading UIImage(name:...) -