mirror of
https://github.com/nextcloud/android.git
synced 2024-11-22 21:25:35 +03:00
add data-extraction-rules
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
parent
adb53f1d5b
commit
57ca106788
2 changed files with 36 additions and 0 deletions
|
@ -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"
|
||||
|
|
35
app/src/main/res/xml/backup_rules.xml
Normal file
35
app/src/main/res/xml/backup_rules.xml
Normal 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>
|
Loading…
Reference in a new issue