diff options
| author | 2022-08-01 23:11:11 +0000 | |
|---|---|---|
| committer | 2022-08-01 23:11:11 +0000 | |
| commit | 9c448ce68a86ec9b621fefaaa27f0949d66435a3 (patch) | |
| tree | 1a8c33a901e0ed37b20dedd908eea2f53011b21a | |
| parent | f1937e7faf566a07bb6bc2ce91ace107b6bb2035 (diff) | |
| parent | 31ea98c081cddc95bec273b202c9f89889039e34 (diff) | |
Merge "Fix Keep rules for MotionLayout" into tm-qpr-dev
| -rw-r--r-- | packages/SystemUI/proguard.flags | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/SystemUI/proguard.flags b/packages/SystemUI/proguard.flags index 5b9299c278a9..7538555e1bcd 100644 --- a/packages/SystemUI/proguard.flags +++ b/packages/SystemUI/proguard.flags @@ -11,6 +11,11 @@ -keep class * extends com.android.systemui.CoreStartable -keep class * implements com.android.systemui.CoreStartable$Injector +# Needed for builds to properly initialize KeyFrames from xml scene +-keepclassmembers class * extends androidx.constraintlayout.motion.widget.Key { + public <init>(); +} + -keepclasseswithmembers class * { public <init>(android.content.Context, android.util.AttributeSet); } |