mirror of
https://github.com/aljazceru/Android-nRF-Toolbox.git
synced 2025-12-24 09:54:20 +01:00
18 lines
590 B
Prolog
18 lines
590 B
Prolog
|
|
# Simple XML
|
|
-keep public class org.simpleframework.** { *; }
|
|
-keep class org.simpleframework.xml.** { *; }
|
|
-keep class org.simpleframework.xml.core.** { *; }
|
|
-keep class org.simpleframework.xml.util.** { *; }
|
|
|
|
-keep class no.nordicsemi.android.log.** { *; }
|
|
|
|
-keepattributes ElementList, Root, InnerClasses, LineNumberTable
|
|
|
|
-keepclasseswithmembers class * {
|
|
@org.simpleframework.xml.* <fields>;
|
|
}
|
|
|
|
# Crashlytics
|
|
-keepattributes SourceFile,LineNumberTable # Keep file names and line numbers.
|
|
-keep public class * extends java.lang.Exception # Optional: Keep custom exceptions. |