1
0
mirror of https://github.com/mihonapp/mihon.git synced 2025-08-23 06:41:31 +02:00

chore(R8): Keep the backup models.

Gson will fail with gson.internal.linkedtreemap cannot be cast to class. Mainly because it's removed or obfuscated by R8.

Signed-off-by: KaiserBh <kaiserbh@proton.me>
This commit is contained in:
KaiserBh
2024-01-10 18:51:02 +11:00
parent 646ceaf4cb
commit 3c73891c44

@@ -81,3 +81,6 @@
# Google OAuth # Google OAuth
-keep class com.google.api.client.** { *; } -keep class com.google.api.client.** { *; }
# Keep backup models, otherwise gson fails on release builds.
-keep class eu.kanade.tachiyomi.data.backup.models.** { *; }