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
No known key found for this signature in database
GPG Key ID: 14D73B142042BBA9

View File

@ -80,4 +80,7 @@
-keep class com.google.api.services.** { *; } -keep class com.google.api.services.** { *; }
# 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.** { *; }