forked from sinpolib/nfcspy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproguard.cfg
40 lines (30 loc) · 1001 Bytes
/
proguard.cfg
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
-dontshrink
-optimizations !class/merging/*,!field/*,!method/marking/private,!code/simplification/arithmetic
-optimizationpasses 5
-printmapping
-dontusemixedcaseclassnames
-dontpreverify
-verbose
-printconfiguration
-printseeds
-libraryjars XposedBridgeApi.jar
-keep public class ** extends android.app.Activity
-keep public class ** extends android.app.Service
-keep public class ** extends android.content.BroadcastReceiver
-keep public class ** implements de.robv.android.xposed.IXposedHookLoadPackage
-keepclasseswithmembers class ** {
native <methods>;
}
-keepclasseswithmembers class ** {
public <init>(android.content.Context,android.util.AttributeSet);
}
-keepclasseswithmembers class ** {
public <init>(android.content.Context,android.util.AttributeSet,int);
}
-keep class * extends android.os.Parcelable {
public static final android.os.Parcelable$Creator *;
}
-keepclassmembers class *** extends com.sinpo.nfcspy.ApduParser$Apdu7816 {
*** TAG;
*** SUB;
}