Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit edd673a9 authored by Christoffer Adamsen's avatar Christoffer Adamsen Committed by Automerger Merge Worker
Browse files

Merge "SystemUI: Add keep rule for VendorServices constructor" into main am:...

Merge "SystemUI: Add keep rule for VendorServices constructor" into main am: 3ffa87b0 am: 7fccce76

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/3435879



Change-Id: Id547ad2e62c3ee72a91f5ec6f765c96ce6929d50
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents c63c81ae 7fccce76
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
-include proguard_kotlin.flags
-keep class com.android.systemui.VendorServices

# VendorServices implements CoreStartable and may be instantiated reflectively in
# SystemUIApplication#startAdditionalStartable.
# TODO(b/373579455): Rewrite this to a @UsesReflection keep annotation.
-keep class com.android.systemui.VendorServices {
  public void <init>();
}

# Needed to ensure callback field references are kept in their respective
# owning classes when the downstream callback registrars only store weak refs.