diff options
| -rw-r--r-- | packages/SystemUI/proguard_common.flags | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/SystemUI/proguard_common.flags b/packages/SystemUI/proguard_common.flags index 21b019eacdcc..f9546c46e915 100644 --- a/packages/SystemUI/proguard_common.flags +++ b/packages/SystemUI/proguard_common.flags @@ -38,6 +38,11 @@ -keepnames class com.android.internal.protolog.** { *; } -keepnames class android.hardware.common.** { *; } +# TODO(b/316553881): Statically linking flags into SystemUI and bootclasspath might not be a +# good idea in the first place +-keepnames class com.android.window.flags.Flags { public *; } + + # Allows proguard to make private and protected methods and fields public as # part of optimization. This lets proguard inline trivial getter/setter methods. -allowaccessmodification |