2014-05-29 17:31:05 +00:00
|
|
|
-optimizationpasses 5
|
|
|
|
-dontusemixedcaseclassnames
|
|
|
|
-dontskipnonpubliclibraryclasses
|
|
|
|
-dontpreverify
|
|
|
|
-verbose
|
|
|
|
-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*
|
|
|
|
|
|
|
|
-keep public class * extends android.app.Activity
|
|
|
|
-keep public class * extends android.app.Application
|
|
|
|
-keep public class * extends android.app.Service
|
|
|
|
-keep public class * extends android.content.BroadcastReceiver
|
|
|
|
-keep public class * extends android.content.ContentProvider
|
|
|
|
-keep public class * extends android.app.backup.BackupAgentHelper
|
|
|
|
-keep public class * extends android.preference.Preference
|
|
|
|
|
2015-09-13 17:16:23 +00:00
|
|
|
-keepattributes *Annotation*
|
|
|
|
|
2018-12-04 05:31:06 +00:00
|
|
|
#-assumenosideeffects class android.util.Log {
|
|
|
|
# public static *** d(...);
|
|
|
|
# public static *** v(...);
|
|
|
|
# public static *** w(...);
|
|
|
|
# public static *** i(...);
|
|
|
|
#}
|
2015-07-25 14:19:14 +00:00
|
|
|
|
2015-09-29 11:42:56 +00:00
|
|
|
-keep class butterknife.** { *; }
|
|
|
|
-dontwarn butterknife.internal.**
|
|
|
|
-keep class **$$ViewBinder { *; }
|
|
|
|
|
|
|
|
-keepclasseswithmembernames class * {
|
|
|
|
@butterknife.* <fields>;
|
|
|
|
}
|
|
|
|
|
|
|
|
-keepclasseswithmembernames class * {
|
|
|
|
@butterknife.* <methods>;
|
|
|
|
}
|
|
|
|
|
2015-01-02 20:03:15 +00:00
|
|
|
# Without this rule, openFileChooser does not get called on KitKat
|
2018-11-22 12:56:08 +00:00
|
|
|
-keep class org.purplei2p.lightning.view.LightningChromeClient {
|
2015-08-21 00:58:33 +00:00
|
|
|
void openFileChooser(android.webkit.ValueCallback);
|
|
|
|
void openFileChooser(android.webkit.ValueCallback, java.lang.String);
|
|
|
|
void openFileChooser(android.webkit.ValueCallback, java.lang.String, java.lang.String);
|
2015-01-02 20:03:15 +00:00
|
|
|
}
|
|
|
|
|
2014-05-29 17:31:05 +00:00
|
|
|
-keepclasseswithmembernames class * {
|
|
|
|
native <methods>;
|
|
|
|
}
|
|
|
|
|
|
|
|
-keepclasseswithmembers class * {
|
|
|
|
public <init>(android.content.Context, android.util.AttributeSet);
|
|
|
|
}
|
|
|
|
|
|
|
|
-keepclasseswithmembers class * {
|
|
|
|
public <init>(android.content.Context, android.util.AttributeSet, int);
|
|
|
|
}
|
|
|
|
|
|
|
|
-keepclassmembers class * extends android.app.Activity {
|
|
|
|
public void *(android.view.View);
|
|
|
|
}
|
|
|
|
|
|
|
|
-keepclassmembers enum * {
|
|
|
|
public static **[] values();
|
|
|
|
public static ** valueOf(java.lang.String);
|
|
|
|
}
|
|
|
|
|
|
|
|
-keep class * implements android.os.Parcelable {
|
|
|
|
public static final android.os.Parcelable$Creator *;
|
|
|
|
}
|
2015-05-03 11:56:22 +00:00
|
|
|
|
|
|
|
# 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.**
|
2015-05-24 13:19:02 +00:00
|
|
|
|
2018-11-22 12:56:08 +00:00
|
|
|
#-dontwarn org.apache.http.conn.ssl.DefaultHostnameVerifier
|
|
|
|
#-dontwarn org.apache.http.HttpHost
|
2017-06-04 23:21:35 +00:00
|
|
|
|
|
|
|
# Needed for okhttp
|
|
|
|
-dontwarn okio.**
|
|
|
|
-dontwarn javax.annotation.Nullable
|
|
|
|
-dontwarn javax.annotation.ParametersAreNonnullByDefault
|