forked from Satergo/Satergo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
proguard.pro
78 lines (66 loc) · 2.34 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Only shrink, don't do anything else
-dontobfuscate
-dontoptimize
-dontnote **
# Java Module System
-keep class module-info
-keepclassmembers class module-info { *; }
-keepattributes Module*
# Preserve all annotations.
-keepattribute *Annotation*
-renamesourcefileattribute SourceFile
-keepattributes SourceFile,LineNumberTable
-keepattributes Signature,InnerClasses,EnclosingMethod
# Preserve all public applications.
-keepclasseswithmembers public class * {
public static void main(java.lang.String[]);
}
-keepclassmembers,allowobfuscation class * {
@com.google.gson.annotations.SerializedName <fields>;
}
-keep class com.satergo.** { *; }
-keep class com.sun.** { *; }
-keep class javafx.** { *; }
-keep class jfxtras.styles.jmetro.** { *; }
-keep class impl.jfxtras.styles.jmetro.** { *; }
-keep class org.ergoplatform.restapi.** { *; }
-keep class org.ergoplatform.appkit.** { *; }
-keep class scorex.util.encode.** { *; }
-keep class sigmastate.** { *; }
-keep class sigma.** { *; }
-keep class scalan.** { *; }
-keep class fastparse.** { *; }
-keep class scala.util.control.** { *; }
-keep class scala.collection.** { *; }
-keep class scala.package** { *; }
-keep class special.** { *; }
-keep class com.google.zxing.** { *; }
-keep class wrappers.** { *; }
-dontwarn scala.concurrent.**
-dontwarn scala.reflect.**
-dontwarn scala.collection.immutable.VM
-dontwarn scala.tools.**
-dontwarn **$$anonfun$*
-dontwarn algebra.**,spire.**,debox.**
-dontwarn org.controlsfx.**
-dontwarn org.fusesource.jansi.**,jtermios.windows.**
-dontwarn retrofit2.**,okhttp3.**
# Preserve all native method names and the name of their classes.
-keepclasseswithmembernames class * {
native <methods>;
}
# Preserve the special static methods that are required in all enumeration classes.
-keepclassmembers,allowoptimization enum * {
public static **[] values();
public static ** valueOf(java.lang.String);
}
# Explicitly preserve all serialization members. The Serializable interface
# is only a marker interface, so it wouldn't save them.
-keepclassmembers class * implements java.io.Serializable {
static final long serialVersionUID;
private static final java.io.ObjectStreamField[] serialPersistentFields;
private void writeObject(java.io.ObjectOutputStream);
private void readObject(java.io.ObjectInputStream);
java.lang.Object writeReplace();
java.lang.Object readResolve();
}