java - Proguard is skipping all setter methods from output jars -


i trying obfuscate multiple jars @ same time using proguard , able ignoring warnings while processing. in output jars, no setter methods present. initiating application spring bean.

i tried following things,

-keep class * {     void set*(***);     void set*(int,***);     boolean is*();     boolean is*(int);     *** get*();     *** get*(int); }  -keep class com.test.myapp.** {     void set*(***);     boolean is*();     *** get*(); } 

but no effect in output jars.

are there other settings/configuration need while using spring in application.


Comments

Popular posts from this blog

php - Vagrant up error - Uncaught Reflection Exception: Class DOMDocument does not exist -

vue.js - Create hooks for automated testing -

Add new key value to json node in java -