Disable Android system auto backup (closes #5114)

In practice this feature:
- Just didn't work
- Magically worked (sometimes; see first point)
- Restored something potentially too old and totally messed up the app

(cherry picked from commit d5c75571dc7f8d8260e43f6f71db46d2835f4106)
This commit is contained in:
arkon 2021-07-31 11:43:08 -04:00 committed by Jobobby04
parent 1f31633b27
commit 22d0a6f19a
2 changed files with 1 additions and 8 deletions

View File

@ -24,8 +24,7 @@
<application
android:name=".App"
android:allowBackup="true"
android:fullBackupContent="@xml/backup_rules"
android:allowBackup="false"
android:hardwareAccelerated="true"
android:hasFragileUserData="true"
android:icon="@mipmap/ic_launcher"

View File

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<full-backup-content>
<include
domain="database"
path="tachiyomi.db" />
</full-backup-content>