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
Post a Comment