mirror of
https://github.com/aljazceru/Android-nRF-Toolbox.git
synced 2025-12-24 01:44:23 +01:00
20 lines
594 B
Prolog
20 lines
594 B
Prolog
|
|
# Simple XML
|
|
-dontwarn javax.xml.**
|
|
|
|
-keep public class org.simpleframework.**{ *; }
|
|
-keep class org.simpleframework.xml.**{ *; }
|
|
-keep class org.simpleframework.xml.core.**{ *; }
|
|
-keep class org.simpleframework.xml.util.**{ *; }
|
|
|
|
-keepattributes Signature
|
|
-keepattributes *Annotation*
|
|
|
|
# Ignore our XML Serialization classes
|
|
-keep public class your.annotated.pojo.models.*{
|
|
public protected private *;
|
|
}
|
|
|
|
# Crashlytics
|
|
-keepattributes SourceFile,LineNumberTable # Keep file names and line numbers.
|
|
-keep public class * extends java.lang.Exception # Optional: Keep custom exceptions. |