53 lines
1.5 KiB
Prolog
53 lines
1.5 KiB
Prolog
# Uncomment this to preserve the line number information for
|
|
# debugging stack traces.
|
|
#-keepattributes SourceFile,LineNumberTable
|
|
|
|
# If you keep the line number information, uncomment this to
|
|
# hide the original source file name.
|
|
#-renamesourcefileattribute SourceFile
|
|
|
|
-assumenosideeffects class android.util.Log {
|
|
public static boolean isLoggable(java.lang.String, int);
|
|
public static int v(...);
|
|
public static int i(...);
|
|
public static int w(...);
|
|
public static int d(...);
|
|
public static int e(...);
|
|
}
|
|
|
|
-assumenosideeffects class com.dixitmobile.common.LoggerService {
|
|
public static void v(...);
|
|
public static void i(...);
|
|
public static void w(...);
|
|
public static void d(...);
|
|
public static void e(...);
|
|
public static void longMsgV(...);
|
|
public static void longMsgI(...);
|
|
public static void longMsgW(...);
|
|
public static void longMsgD(...);
|
|
public static void longMsgE(...);
|
|
public static void printStackTrace(...);
|
|
}
|
|
|
|
-keepnames class * implements java.io.Serializable
|
|
|
|
-keepclassmembers class * implements java.io.Serializable {
|
|
static final long serialVersionUID;
|
|
!static !transient <fields>;
|
|
}
|
|
|
|
-keep class com.google.gson.** { *; }
|
|
-keepattributes Annotation
|
|
-keepattributes Signature
|
|
|
|
-keepclassmembers enum * {
|
|
public static **[] values();
|
|
public static ** valueOf(java.lang.String);
|
|
}
|
|
|
|
-keepclassmembers class ** {
|
|
@org.greenrobot.eventbus.Subscribe <methods>;
|
|
}
|
|
-keep enum org.greenrobot.eventbus.ThreadMode { *; }
|
|
|
|
-keep class android.support.v7.widget.AppCompatButton { *; }
|