Merge "Explicitly keep default constructor in rules without members" into main
diff --git a/proguard.flags b/proguard.flags
index 3f08b97..335c28e 100644
--- a/proguard.flags
+++ b/proguard.flags
@@ -1,5 +1,11 @@
--keep class com.android.calendar.OtherPreferences
--keep class com.android.calendar.GeneralPreferences
+# TODO(b/373579455): Evaluate if <init> needs to be kept.
+-keep class com.android.calendar.OtherPreferences {
+ void <init>();
+}
+# TODO(b/373579455): Evaluate if <init> needs to be kept.
+-keep class com.android.calendar.GeneralPreferences {
+ void <init>();
+}
-keepclassmembers class com.android.calendar.AllInOneActivity {
*** setControlsOffset(...);
}