parent
87760a795d
commit
597f7bbafd
@ -0,0 +1,8 @@
|
|||||||
|
-keep public class android.support.v7.widget.** { *; }
|
||||||
|
-keep public class android.support.v7.internal.widget.** { *; }
|
||||||
|
# below line disabled due to LGE ROM bug.
|
||||||
|
# -keep public class android.support.v7.internal.view.menu.** { *; }
|
||||||
|
|
||||||
|
-keep public class * extends android.support.v4.view.ActionProvider {
|
||||||
|
public <init>(android.content.Context);
|
||||||
|
}
|
@ -0,0 +1,20 @@
|
|||||||
|
-keepattributes *Annotation*,EnclosingMethod
|
||||||
|
-keep @interface dagger.*,javax.inject.*
|
||||||
|
-keep @dagger.Module class *
|
||||||
|
-keepclassmembers class * {
|
||||||
|
@javax.inject.* *;
|
||||||
|
@dagger.* *;
|
||||||
|
<init>();
|
||||||
|
}
|
||||||
|
-keepclasseswithmembernames class * {
|
||||||
|
@javax.inject.* <fields>;
|
||||||
|
}
|
||||||
|
-keep class javax.inject.** { *; }
|
||||||
|
-keep class **$$ModuleAdapter
|
||||||
|
-keep class **$$InjectAdapter
|
||||||
|
-keep class **$$StaticInjection
|
||||||
|
|
||||||
|
-keep class dagger.** { *; }
|
||||||
|
-keep class * extends dagger.** { *; }
|
||||||
|
-keep interface dagger.** {*;}
|
||||||
|
-dontwarn dagger.internal.codegen.**
|
@ -0,0 +1,19 @@
|
|||||||
|
## Google Play Services 4.3.23 specific rules ##
|
||||||
|
## https://developer.android.com/google/play-services/setup.html#Proguard ##
|
||||||
|
|
||||||
|
-keep class * extends java.util.ListResourceBundle {
|
||||||
|
protected Object[][] getContents();
|
||||||
|
}
|
||||||
|
|
||||||
|
-keep public class com.google.android.gms.common.internal.safeparcel.SafeParcelable {
|
||||||
|
public static final *** NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
-keepnames @com.google.android.gms.common.annotation.KeepName class *
|
||||||
|
-keepclassmembernames class * {
|
||||||
|
@com.google.android.gms.common.annotation.KeepName *;
|
||||||
|
}
|
||||||
|
|
||||||
|
-keepnames class * implements android.os.Parcelable {
|
||||||
|
public static final ** CREATOR;
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
# Proguard configuration for Jackson 2.x (fasterxml package instead of codehaus package)
|
||||||
|
|
||||||
|
-keepattributes *Annotation*,EnclosingMethod,Signature
|
||||||
|
-keepnames class com.fasterxml.jackson.** {
|
||||||
|
*;
|
||||||
|
}
|
||||||
|
-keepnames interface com.fasterxml.jackson.** {
|
||||||
|
*;
|
||||||
|
}
|
||||||
|
-dontwarn com.fasterxml.jackson.databind.**
|
||||||
|
-keep class org.codehaus.** { *; }
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
-dontwarn com.squareup.picasso.**
|
@ -0,0 +1,2 @@
|
|||||||
|
-keep class org.spongycastle.** {*;}
|
||||||
|
-dontwarn javax.naming.**
|
@ -0,0 +1,2 @@
|
|||||||
|
-keep class org.sqlite.** { *; }
|
||||||
|
-keep class org.sqlite.database.** { *; }
|
@ -0,0 +1,6 @@
|
|||||||
|
# OkHttp
|
||||||
|
-keepattributes Signature
|
||||||
|
-keepattributes *Annotation*
|
||||||
|
-keep class com.squareup.okhttp.** { *; }
|
||||||
|
-keep interface com.squareup.okhttp.** { *; }
|
||||||
|
-dontwarn com.squareup.okhttp.**
|
@ -0,0 +1,5 @@
|
|||||||
|
# Okio
|
||||||
|
-keep class sun.misc.Unsafe { *; }
|
||||||
|
-dontwarn java.nio.file.*
|
||||||
|
-dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement
|
||||||
|
-dontwarn okio.**
|
Loading…
Reference in New Issue