-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathproguard.properties
48 lines (37 loc) · 1.05 KB
/
proguard.properties
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
45
46
47
48
-target 1.8
-printmapping store/out.map
-printusage store/out.txt
-keepattributes Signature,InnerClasses
-keepattributes *Annotation*
-dontwarn okio.**
-dontwarn okhttp3.**
-dontwarn org.fusesource.jansi.internal.**
-dontwarn javafx.**
-keepclasseswithmembers public class * {
public static void main(java.lang.String[]);
}
-keep class okio.**
-keep class okhttp3.** { *; }
-keep interface okhttp3.** { *; }
-keepattributes Signature
-keepattributes *Annotation*
-keepclassmembers enum * {
public static **[] values();
public static ** valueOf(java.lang.String);
}
-keep class * extends javax.swing.plaf.ComponentUI {
public static javax.swing.plaf.ComponentUI createUI(javax.swing.JComponent);
}
-keepclasseswithmembers,includedescriptorclasses,allowshrinking class * {
native <methods>;
}
-keep public class * implements com.annimon.ownlang.modules.Module
# Soft obfuscation
-keep public class * {
public protected *;
}
# Hard obfuscation
#-optimizationpasses 9
#-allowaccessmodification
#-dontusemixedcaseclassnames
#-repackageclasses ''