-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathproguard.flags
More file actions
66 lines (57 loc) · 2.46 KB
/
proguard.flags
File metadata and controls
66 lines (57 loc) · 2.46 KB
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
# Improves inlining by allowing ProGuard to make fields/methods accessed
# by the inlined method visible.
-allowaccessmodification
# Selectively disable obfuscation for key Launcher subpackages, making
# unretraced stack frames slightly more actionable.
-keep,allowshrinking,allowoptimization,allowaccessmodification class com.android.** {*;}
-keep,allowshrinking,allowoptimization class com.android.systemui.shared.** {*;}
-keepclasseswithmembernames class com.android.systemui.shared.** {*;}
-keep,allowshrinking,allowoptimization class com.android.quickstep.** {*;}
-keepclasseswithmembernames class com.android.quickstep.** {*;}
-keep class android.gui.BoxShadowSettings
-keep class android.gui.BorderSettings
# Proguard will strip methods required for talkback to properly scroll to
# next row when focus is on the last item of last row when using a RecyclerView
# Keep optimized and shrunk proguard to prevent issues like this when using
# support jar.
-keep class androidx.recyclerview.widget.RecyclerView { *; }
# Fragments
-keep class ** extends androidx.fragment.app.Fragment {
public <init>(...);
}
-keep class ** extends android.app.Fragment {
public <init>(...);
}
# Rules for internal proto classes
# Prevent optimization or access modification of any referenced code that may
# conflict with code in the bootclasspath.
# TODO(b/222468116): Resolve such collisions in the build system.
-keep interface com.android.launcher3.userevent.nano.LauncherLogProto.** {*;}
-keep interface com.android.launcher3.model.nano.LauncherDumpProto.** {*;}
-keep interface com.android.internal.protolog.common.IProtoLogGroup { *; }
# Do not optimize animation methods that are using reflection
-keep class com.android.launcher3.allapps.DiscoveryBounce$VerticalProgressWrapper {
public void setProgress(float);
public float getProgress();
}
# BUG(70852369): Surpress additional warnings after changing from Proguard to R8
-dontwarn android.app.**
-dontwarn android.graphics.**
-dontwarn android.net.**
-dontwarn android.os.**
-dontwarn android.view.**
-dontwarn android.window.**
# The support library contains references to newer platform versions.
# Don't warn about those in case this app is linking against an older
# platform version. We know about them, and they are safe.
-dontwarn android.support.**
-dontwarn org.apache.http.**
-keep class com.android.launcher3.lineage.trust.** {
*;
}
-keep class com.android.launcher3.icons.** {
*;
}
-keep class com.android.launcher3.data.** {
*;
}