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

Commit 3ffa87b0 authored by Christoffer Adamsen's avatar Christoffer Adamsen Committed by Gerrit Code Review
Browse files

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

parents 8ae06af2 64143c8d
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.