android - Why are class names not obfuscated by Proguard? -
all class name kept, not replaced a,b,c...
proguard rules following gist link https://gist.github.com/yongbowu/7ba37e82cd3f56a235c0
in android studio, proguard enabled:
release { minifyenabled true proguardfiles getdefaultproguardfile('proguard-android.txt'), 'proguard-rules.pro' } example class want proguard
public class portfoliolistviewadapter extends baseadapter { private float a; private float b; private float c; private float d; ...... } google reason hours, can not find reason.
thanks in advance ;-)
Comments
Post a Comment