Infinity-For-Lemmy/app/proguard-rules.pro

24 lines
785 B
Prolog
Raw Normal View History

2020-07-09 17:44:49 +02:00
# 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
## Preferences reflection
-keep class * extends androidx.preference.PreferenceFragmentCompat
-keep class ml.docilealligator.infinityforreddit.Settings.FontPreviewFragment { *; }
2020-07-09 17:44:49 +02:00
## EventBus Rules
-keepattributes *Annotation*
-keepclassmembers class * {
@org.greenrobot.eventbus.Subscribe <methods>;
}
-keep enum org.greenrobot.eventbus.ThreadMode { *; }
# And if you use AsyncExecutor:
-keepclassmembers class * extends org.greenrobot.eventbus.util.ThrowableFailureEvent {
<init>(java.lang.Throwable);
}