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

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

Merge "Explicitly keep default constructor in rules without members" into main am: 8c5ef673

parents a6fb4911 8c5ef673
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
# Keep the annotation, classes, methods, and fields marked as UsedByReflection
-keep class com.android.dialer.proguard.UsedByReflection
-keep @com.android.dialer.proguard.UsedByReflection class *
# TODO(b/373579455): Evaluate if <init> needs to be kept.
-keep class com.android.dialer.proguard.UsedByReflection {
    void <init>();
}
# TODO(b/373579455): Evaluate if <init> needs to be kept.
-keep @com.android.dialer.proguard.UsedByReflection class * {
    void <init>();
}
-keepclassmembers class * {
    @com.android.dialer.proguard.UsedByReflection *;
}