Merge branch 'backup' into 'master'

Explicitly define backup rules

Closes #1700

See merge request fdroid/fdroidclient!843
This commit is contained in:
Hans-Christoph Steiner 2019-10-14 13:05:27 +00:00
commit 915aeb6c54
2 changed files with 6 additions and 1 deletions

View File

@ -64,7 +64,7 @@
android:label="@string/app_name"
android:description="@string/app_description"
android:allowBackup="true"
android:fullBackupContent="true"
android:fullBackupContent="@xml/backup_rules"
android:theme="@style/AppThemeLight"
android:supportsRtl="true">

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<full-backup-content>
<!-- Don't include apks or the local swap repo -->
<exclude domain="file" path="."/>
</full-backup-content>