forked from LawnchairLauncher/lawnchair
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproguard.flags
87 lines (72 loc) · 2.14 KB
/
proguard.flags
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
79
80
81
82
83
84
85
86
-keep,allowshrinking,allowoptimization class ch.deletescape.lawnchair.** {
*;
}
-keep class ch.deletescape.lawnchair.BaseRecyclerViewFastScrollBar {
public void setThumbWidth(int);
public int getThumbWidth();
public void setTrackWidth(int);
public int getTrackWidth();
}
-keep class ch.deletescape.lawnchair.BaseRecyclerViewFastScrollPopup {
public void setAlpha(float);
public float getAlpha();
}
-keep class ch.deletescape.lawnchair.ButtonDropTarget {
public int getTextColor();
}
-keep class ch.deletescape.lawnchair.CellLayout {
public float getBackgroundAlpha();
public void setBackgroundAlpha(float);
}
-keep class ch.deletescape.lawnchair.CellLayout$LayoutParams {
public void setWidth(int);
public int getWidth();
public void setHeight(int);
public int getHeight();
public void setX(int);
public int getX();
public void setY(int);
public int getY();
}
-keep class ch.deletescape.lawnchair.dragndrop.DragLayer$LayoutParams {
public void setWidth(int);
public int getWidth();
public void setHeight(int);
public int getHeight();
public void setX(int);
public int getX();
public void setY(int);
public int getY();
}
-keep class ch.deletescape.lawnchair.FastBitmapDrawable {
public void setDesaturation(float);
public float getDesaturation();
public void setBrightness(float);
public float getBrightness();
}
-keep class ch.deletescape.lawnchair.MemoryDumpActivity {
*;
}
-keep class ch.deletescape.lawnchair.PreloadIconDrawable {
public float getAnimationProgress();
public void setAnimationProgress(float);
}
-keep class ch.deletescape.lawnchair.pageindicators.CaretDrawable {
public float getCaretProgress();
public void setCaretProgress(float);
}
-keep class ch.deletescape.lawnchair.Workspace {
public float getBackgroundAlpha();
public void setBackgroundAlpha(float);
}
-keep class com.google.android.libraries.launcherclient.* {
*;
}
-keep class ch.deletescape.lawnchair.DeferredHandler {
*;
}
# Proguard will strip new callbacks in LauncherApps.Callback from
# WrappedCallback if compiled against an older SDK. Don't let this happen.
-keep class ch.deletescape.lawnchair.compat.** {
*;
}