From c48accb3572d79c772875436939f7141cf5f9423 Mon Sep 17 00:00:00 2001 From: arkon Date: Sun, 23 Apr 2023 11:59:44 -0400 Subject: [PATCH] Maybe fix Firebase crashes See https://github.com/firebase/firebase-android-sdk/issues/3507 --- app/proguard-rules.pro | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro index 4b9576dedc..e8f9b52202 100644 --- a/app/proguard-rules.pro +++ b/app/proguard-rules.pro @@ -69,4 +69,8 @@ ##---------------End: proguard configuration for kotlinx.serialization ---------- # XmlUtil --keep public enum nl.adaptivity.xmlutil.EventType { *; } \ No newline at end of file +-keep public enum nl.adaptivity.xmlutil.EventType { *; } + +# Firebase +-keep class com.google.firebase.installations.** { *; } +-keep interface com.google.firebase.installations.** { *; } \ No newline at end of file