-
Notifications
You must be signed in to change notification settings - Fork 241
/
Copy pathproguard.pro
44 lines (40 loc) · 1.08 KB
/
proguard.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Only Required for Demo App
## Mailable_Log
-dontwarn ch.qos.logback.core.net.**
-dontwarn org.slf4j.**
## Picasso
-dontwarn com.squareup.okhttp.**
## Retrofit
-dontwarn retrofit.**
-keep class retrofit.** { *; }
-keepattributes Signature
-keepattributes Exceptions
## Visa Checkout
-assumenosideeffects class android.util.Log {
public static *** d(...);
public static *** v(...);
}
-keepnames class * implements android.os.Parcelable {
public static final ** CREATOR;
}
-keep public class * extends android.app.Activity
-dontwarn com.google.gson.**
-dontwarn com.threatmetrix.**
-dontwarn com.google.**
-dontwarn okhttp3.**
-dontwarn okio.**
-keep class com.visa.** { *; }
-keep class com.threatmetrix.** { *; }
-keep class okio.** { *; }
-keep class okhttp3.** { *; }
-keep class com.google.gson.** { *; }
-keep class de.greenrobot.** { *; }
-keepclassmembers class * {
public void onEvent(...);
public void onEventMainThread(...);
public void onEventAsync(...);
}
-keep class sun.misc.Unsafe { *; }
-keepattributes Signature
-keepattributes Exceptions
-keepattributes *Annotation*