2016-01-16 16:33:35 +01:00
- dontobfuscate
2015-10-02 13:20:15 +02:00
# OkHttp
- keepattributes Signature
- keepattributes * Annotation *
2016-02-03 12:56:12 +01:00
- keep class okhttp3 . ** { * ; }
- keep interface okhttp3 . ** { * ; }
- dontwarn okhttp3 . **
2015-10-02 13:20:15 +02:00
- dontwarn okio . **
2016-01-16 16:33:35 +01:00
# Okio
- keep class sun . misc . Unsafe { * ; }
- dontwarn java . nio . file . *
- dontwarn org . codehaus . mojo . animal_sniffer . IgnoreJRERequirement
- dontwarn okio . **
2015-10-02 13:20:15 +02:00
# Glide specific rules #
# https : // github . com / bumptech / glide
- keep public class * implements com . bumptech . glide . module . GlideModule
- keep public enum com . bumptech . glide . load . resource . bitmap . ImageHeaderParser $ ** {
** [ ] $ VALUES ;
public * ;
}
2016-01-16 16:33:35 +01:00
# RxJava 1.1 .0
- dontwarn sun . misc . **
2015-10-02 13:20:15 +02:00
2016-01-16 16:33:35 +01:00
- keepclassmembers class rx . internal . util . unsafe . * ArrayQueue * Field * {
long producerIndex ;
long consumerIndex ;
2015-10-02 13:20:15 +02:00
}
2016-01-16 16:33:35 +01:00
- keepclassmembers class rx . internal . util . unsafe . BaseLinkedQueueProducerNodeRef {
rx . internal . util . atomic . LinkedQueueNode producerNode ;
2015-10-02 13:20:15 +02:00
}
2016-01-16 16:33:35 +01:00
- keepclassmembers class rx . internal . util . unsafe . BaseLinkedQueueConsumerNodeRef {
rx . internal . util . atomic . LinkedQueueNode consumerNode ;
2015-10-02 13:20:15 +02:00
}
2016-04-06 21:31:35 +02:00
# Retrofit 2. X
## https : // square . github . io / retrofit / ##
2016-02-21 15:59:07 +01:00
2016-04-06 21:31:35 +02:00
- dontwarn retrofit2 . **
- keep class retrofit2 . ** { * ; }
- keepattributes Signature
- keepattributes Exceptions
2016-02-21 15:59:07 +01:00
- keepclasseswithmembers class * {
2016-04-06 21:31:35 +02:00
@ retrofit2 . http . * < methods > ;
2016-02-21 15:59:07 +01:00
}
2015-10-02 13:20:15 +02:00
# AppCombat
- keep public class android . support . v7 . widget . ** { * ; }
- keep public class android . support . v7 . internal . widget . ** { * ; }
- keep public class android . support . v7 . internal . view . menu . ** { * ; }
- keep public class * extends android . support . v4 . view . ActionProvider {
public < init > ( android . content . Context ) ;
2015-10-18 19:18:50 +02:00
}
2016-01-16 16:33:35 +01:00
## GSON 2.2 .4 specific rules ##
# Gson uses generic type information stored in a class file when working with fields . Proguard
# removes such information by default , so configure it to keep all of it .
- keepattributes Signature
# For using GSON @ Expose annotation
- keepattributes * Annotation *
- keepattributes EnclosingMethod
# Gson specific classes
- keep class sun . misc . Unsafe { * ; }
- keep class com . google . gson . stream . ** { * ; }
## ACRA 4.5 .0 specific rules ##
# we need line numbers in our stack traces otherwise they are pretty useless
- renamesourcefileattribute SourceFile
- keepattributes SourceFile , LineNumberTable
# ACRA needs "annotations" so add this . . .
- keepattributes * Annotation *
# keep this class so that logging will show 'ACRA' and not a obfuscated name like 'a' .
# Note : if you are removing log messages elsewhere in this file then this isn ' t necessary
- keep class org . acra . ACRA {
* ;
}
# keep this around for some enums that ACRA needs
- keep class org . acra . ReportingInteractionMode {
* ;
}
- keepnames class org . acra . sender . HttpSender $ ** {
* ;
}
- keepnames class org . acra . ReportField {
* ;
}
# keep this otherwise it is removed by ProGuard
- keep public class org . acra . ErrorReporter {
public void addCustomData ( java . lang . String , java . lang . String ) ;
public void putCustomData ( java . lang . String , java . lang . String ) ;
public void removeCustomData ( java . lang . String ) ;
}
# keep this otherwise it is removed by ProGuard
- keep public class org . acra . ErrorReporter {
public void handleSilentException ( java . lang . Throwable ) ;
}
# Keep the support library
- keep class org . acra . ** { * ; }
2016-06-05 23:40:27 +02:00
- keep interface org . acra . ** { * ; }
# SnakeYaml
- keep class org . yaml . snakeyaml . ** { public protected private * ; }
- keep class org . yaml . snakeyaml . ** { public protected private * ; }
- dontwarn org . yaml . snakeyaml . **
# Duktape
- keep class com . squareup . duktape . ** { * ; }