SimpleXML ProGuard rules

SimpleXML – is a high performance XML serialization and configuration framework for Java and Android.

Its goal is to provide an XML framework that enables rapid development of XML configuration and communication systems.

ProGuard rules for SimpleXML

Add the following lines to your ProGuard configuration proguard.cfg file in project.

# SimpleXML
-keep interface org.simpleframework.xml.core.Label {
   public *;
}
-keep class * implements org.simpleframework.xml.core.Label {
   public *;
}
-keep interface org.simpleframework.xml.core.Parameter {
   public *;
}
-keep class * implements org.simpleframework.xml.core.Parameter {
   public *;
}
-keep interface org.simpleframework.xml.core.Extractor {
   public *;
}
-keep class * implements org.simpleframework.xml.core.Extractor {
   public *;
}

For more information about SimpleXML please see the website.

Static Gson ProGuard rules

Popular ProGuard rules