Problems with using jackson-json library when using Proguard Problems with using jackson-json library when using Proguard android android

Problems with using jackson-json library when using Proguard


ok , i've added the next things that i've gathered from multiple websites:

-libraryjars libs/jackson-annotations-2.0.0.jar-libraryjars libs/jackson-core-2.0.0.jar-dontskipnonpubliclibraryclassmembers-keepattributes *Annotation*,EnclosingMethod-keepnames class org.codehaus.jackson.** { *; }-dontwarn javax.xml.**-dontwarn javax.xml.stream.events.**-dontwarn com.fasterxml.jackson.databind.**

together with the next code for each class that is used for json(with get&set), i think the apk is being created but i'm not sure if what i've written is enough to make it work well , and also if some of what i've written is not needed :

-keep public class MyClass.** {  public void set*(***);  public *** get*();}