How to keep class with ProGuard -



How to keep class with ProGuard -

i'm using proguard , want maintain class methods.

so what's difference between

-keep class foo

and

-keep class foo {*;}

-keep class foo makes sure class foo (but not contents) remains nowadays name in output.

-keep class foo { *; } makes sure class foo and of fields , methods remain nowadays original names in output.

see proguard manual > usage > keep options.

proguard

Comments

Popular posts from this blog

javascript - I need to update the text of a paragraph by inline edit -

javascript - THREE.js reposition vertices for RingGeometry -

assembly - What is the addressing mode for ld, add, and rjmp instructions? -