mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
Exclude all files from D2D transfers
This commit is contained in:
@@ -40,6 +40,7 @@
|
||||
android:name="org.briarproject.briar.android.BriarApplicationImpl"
|
||||
android:allowBackup="false"
|
||||
android:banner="@mipmap/tv_banner"
|
||||
android:dataExtractionRules="@xml/backup_extraction_rules"
|
||||
android:fullBackupContent="@xml/backup_rules"
|
||||
android:icon="@mipmap/ic_launcher_round"
|
||||
android:label="@string/app_name"
|
||||
|
||||
37
briar-android/src/main/res/xml/backup_extraction_rules.xml
Normal file
37
briar-android/src/main/res/xml/backup_extraction_rules.xml
Normal file
@@ -0,0 +1,37 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<data-extraction-rules>
|
||||
<cloud-backup disableIfNoEncryptionCapabilities="true">
|
||||
<!-- docs: https://developer.android.com/guide/topics/data/autobackup#XMLSyntax -->
|
||||
<exclude
|
||||
domain="root"
|
||||
path="." />
|
||||
<!-- the previous entry should exclude things recursively, but we add more just to be sure -->
|
||||
<exclude
|
||||
domain="root"
|
||||
path="app_db" />
|
||||
<exclude
|
||||
domain="root"
|
||||
path="app_key" />
|
||||
<!-- we don't use domain=file (getFilesDir()), but ApplicationInfo#dataDir -->
|
||||
<exclude
|
||||
domain="sharedpref"
|
||||
path="." />
|
||||
</cloud-backup>
|
||||
<device-transfer>
|
||||
<!-- docs: https://developer.android.com/guide/topics/data/autobackup#XMLSyntax -->
|
||||
<exclude
|
||||
domain="root"
|
||||
path="." />
|
||||
<!-- the previous entry should exclude things recursively, but we add more just to be sure -->
|
||||
<exclude
|
||||
domain="root"
|
||||
path="app_db" />
|
||||
<exclude
|
||||
domain="root"
|
||||
path="app_key" />
|
||||
<!-- we don't use domain=file (getFilesDir()), but ApplicationInfo#dataDir -->
|
||||
<exclude
|
||||
domain="sharedpref"
|
||||
path="." />
|
||||
</device-transfer>
|
||||
</data-extraction-rules>
|
||||
Reference in New Issue
Block a user