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

Commit 8c5ef673 authored by Christoffer Adamsen's avatar Christoffer Adamsen Committed by Gerrit Code Review
Browse files

Merge "Explicitly keep default constructor in rules without members" into main

parents a6fb4911 aec5f691
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 *;
}