mirror of https://github.com/kurisufriend/Clover
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
125 lines
4.1 KiB
125 lines
4.1 KiB
# This is a configuration file for ProGuard.
|
|
# http://proguard.sourceforge.net/index.html#manual/usage.html
|
|
|
|
# Optimizations: If you don't want to optimize, use the
|
|
# proguard-android.txt configuration file instead of this one, which
|
|
# turns off the optimization flags. Adding optimization introduces
|
|
# certain risks, since for example not all optimizations performed by
|
|
# ProGuard works on all versions of Dalvik. The following flags turn
|
|
# off various optimizations known to have issues, but the list may not
|
|
# be complete or up to date. (The "arithmetic" optimization can be
|
|
# used if you are only targeting Android 2.0 or later.) Make sure you
|
|
# test thoroughly if you go this route.
|
|
#-optimizations !code/simplification/arithmetic,!code/simplification/cast,!field/*,!class/merging/*
|
|
#-optimizationpasses 2
|
|
#-allowaccessmodification
|
|
-dontoptimize
|
|
-dontpreverify
|
|
|
|
# The remainder of this file is identical to the non-optimized version
|
|
# of the Proguard configuration file (except that the other file has
|
|
# flags to turn off optimization).
|
|
|
|
-dontusemixedcaseclassnames
|
|
-dontskipnonpubliclibraryclasses
|
|
-verbose
|
|
|
|
# Keep sourcefile and linenumbers for easier crash report inspection
|
|
-keepattributes SourceFile,LineNumberTable
|
|
|
|
-keepattributes *Annotation*
|
|
-keep public class com.google.vending.licensing.ILicensingService
|
|
-keep public class com.android.vending.licensing.ILicensingService
|
|
|
|
# For native methods, see http://proguard.sourceforge.net/manual/examples.html#native
|
|
-keepclasseswithmembernames class * {
|
|
native <methods>;
|
|
}
|
|
|
|
# keep setters in Views so that animations can still work.
|
|
# see http://proguard.sourceforge.net/manual/examples.html#beans
|
|
-keepclassmembers public class * extends android.view.View {
|
|
void set*(***);
|
|
*** get*();
|
|
}
|
|
|
|
# We want to keep methods in Activity that could be used in the XML attribute onClick
|
|
-keepclassmembers class * extends android.app.Activity {
|
|
public void *(android.view.View);
|
|
}
|
|
|
|
# For enumeration classes, see http://proguard.sourceforge.net/manual/examples.html#enumerations
|
|
-keepclassmembers enum * {
|
|
public static **[] values();
|
|
public static ** valueOf(java.lang.String);
|
|
}
|
|
|
|
-keepclassmembers class * implements android.os.Parcelable {
|
|
public static final android.os.Parcelable$Creator CREATOR;
|
|
}
|
|
|
|
-keepclassmembers class **.R$* {
|
|
public static <fields>;
|
|
}
|
|
|
|
# The support library contains references to newer platform versions.
|
|
# Don't warn about those in case this app is linking against an older
|
|
# platform version. We know about them, and they are safe.
|
|
-dontwarn android.support.**
|
|
|
|
# OrmLite uses reflection
|
|
-keep class com.j256.**
|
|
-keepclassmembers class com.j256.** { *; }
|
|
-keep enum com.j256.**
|
|
-keepclassmembers enum com.j256.** { *; }
|
|
-keep interface com.j256.**
|
|
-keepclassmembers interface com.j256.** { *; }
|
|
|
|
# Clover database models
|
|
-keep class org.floens.chan.core.model.orm.** { *; }
|
|
# And JSON models
|
|
-keep class org.floens.chan.core.model.json.** { *; }
|
|
|
|
# Required for the gif library
|
|
-keep public class pl.droidsonroids.gif.GifIOException{<init>(int);}
|
|
-keep class pl.droidsonroids.gif.GifInfoHandle{<init>(long,int,int,int);}
|
|
|
|
# OkHttp and LeakCanary
|
|
-dontwarn java.nio.**
|
|
-dontwarn javax.annotation.**
|
|
-dontwarn org.codehaus.mojo.**
|
|
# LeakCanary uses removed method (checks the API level)
|
|
-dontwarn com.squareup.leakcanary.DisplayLeakService
|
|
-dontwarn org.conscrypt.**
|
|
|
|
# Jsoup
|
|
-keeppackagenames org.jsoup.nodes
|
|
|
|
# JS interfaces
|
|
-keepclassmembers class * {
|
|
@android.webkit.JavascriptInterface <methods>;
|
|
}
|
|
|
|
# EventBus
|
|
-keepclassmembers class ** {
|
|
public void onEvent*(**);
|
|
}
|
|
|
|
#-keep public class * extends android.support.design.**
|
|
|
|
# Some reflection is used on RecyclerView and SlidingPaneLayout
|
|
-keep public class android.support.v7.widget.RecyclerView
|
|
-keep public class android.support.v4.widget.SlidingPaneLayout
|
|
|
|
# Keep Feather inject working.
|
|
-keepclassmembers,allowobfuscation class * {
|
|
@javax.inject.* *;
|
|
<init>();
|
|
}
|
|
|
|
# ACRA stuff
|
|
# ACRA loads Plugins using reflection, so we need to keep all Plugin classes
|
|
-keep class * extends @android.support.annotation.Keep org.acra.** {*;}
|
|
|
|
# ACRA uses enum fields in annotations, so we have to keep those
|
|
-keep enum org.acra.** {*;}
|
|
|