add data-extraction-rules

Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
tobiasKaminsky 2022-07-21 09:37:15 +02:00 committed by Álvaro Brey (Rebase PR Action)
parent adb53f1d5b
commit 57ca106788
2 changed files with 36 additions and 0 deletions

View file

@ -76,6 +76,7 @@
<application
android:name=".MainApp"
android:fullBackupContent="@xml/backup_config"
android:dataExtractionRules="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:installLocation="internalOnly"
android:label="@string/app_name"

View file

@ -0,0 +1,35 @@
<?xml version="1.0" encoding="utf-8"?><!--
~
~ Nextcloud Android client application
~
~ @author Tobias Kaminsky
~ Copyright (C) 2022 Tobias Kaminsky
~ Copyright (C) 2022 Nextcloud GmbH
~
~ This program is free software: you can redistribute it and/or modify
~ it under the terms of the GNU Affero General Public License as published by
~ the Free Software Foundation, either version 3 of the License, or
~ (at your option) any later version.
~
~ This program is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU Affero General Public License for more details.
~
~ You should have received a copy of the GNU Affero General Public License
~ along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<data-extraction-rules>
<cloud-backup disableIfNoEncryptionCapabilities="true">
<exclude
domain="sharedpref"
path="evernote_jobs.xml" />
<exclude
domain="database"
path="evernote_jobs.db" />
<exclude
domain="file"
path="." />
</cloud-backup>
</data-extraction-rules>