-
Notifications
You must be signed in to change notification settings - Fork 1
/
conf.pro
71 lines (62 loc) · 2.57 KB
/
conf.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
-libraryjars 'C:\Program Files\Java\jre1.8.0_301\lib\rt.jar'
-printmapping 'VkChat.map'
-keepattributes *Annotation*,SourceFile,LineNumberTable,Signature
#-dontnote
-dontwarn org.slf4j.**
-dontwarn javax.**
-dontwarn org.apache.**
-dontwarn **
-optimizationpasses 5
-overloadaggressively
# Для тестов
-dontobfuscate
# Когда буду тестить, обязательно надо раскоментировать
#-addconfigurationdebugging
-whyareyoukeeping class org.jsoup.nodes.Document
# Свалить всё в одну кучу
-repackageclasses ru.spliterash.vkchat
-allowaccessmodification
-dontnote
# Мои лаунчеры
-keep class * extends ru.spliterash.vkchat.wrappers.Launcher
# Сохраняем всё моё, разрешая запутывание
-keepclassmembers,allowobfuscation class ru.spliterash.** { *; }
-keep class com.vk.api.sdk.httpclient.** { *; }
-keep class sun.misc.Unsafe { *; }
# Сохраняем имена енумоф
-keepclassmembernames enum * {
<fields>;
public static **[] values();
public static ** valueOf(java.lang.String);
}
# Ещё раз на всякий случай
-keepclassmembers class * extends java.lang.Enum {
<fields>;
public static **[] values();
public static ** valueOf(java.lang.String);
}
# Сериализацию да тоже надо
-keepclassmembernames class * extends java.io.Serializable {
static final long serialVersionUID;
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();
}
# Нативные методы само собой
-keepclasseswithmembers,includedescriptorclasses,allowshrinking class * {
native <methods>;
}
# Правила для GSON
# Prevent proguard from stripping interface information from TypeAdapter, TypeAdapterFactory,
# JsonSerializer, JsonDeserializer instances (so they can be used in @JsonAdapter)
-keep,allowobfuscation class * extends com.google.gson.TypeAdapter
-keep,allowobfuscation class * implements com.google.gson.TypeAdapterFactory
-keep,allowobfuscation class * implements com.google.gson.JsonSerializer
-keep,allowobfuscation class * implements com.google.gson.JsonDeserializer
# Надо переделать так, чтобы удаляло неюзаемые переменные
# Методы то удаляет
-keepclassmembers,allowshrinking,allowobfuscation class * {
@com.google.gson.annotations.SerializedName <fields>;
}