Crossplatform App der Caritas (Versuch).
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

proguard.txt 508B

12345678910111213141516171819
  1. -keepattributes *Annotation*
  2. -keepclassmembers enum androidx.lifecycle.Lifecycle$Event {
  3. <fields>;
  4. }
  5. -keep !interface * implements androidx.lifecycle.LifecycleObserver {
  6. }
  7. -keep class * implements androidx.lifecycle.GeneratedAdapter {
  8. <init>(...);
  9. }
  10. -keepclassmembers class ** {
  11. @androidx.lifecycle.OnLifecycleEvent *;
  12. }
  13. # this rule is need to work properly when app is compiled with api 28, see b/142778206
  14. -keepclassmembers class androidx.lifecycle.ReportFragment$LifecycleCallbacks { *; }