28 lines
845 B
XML
28 lines
845 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Rules for Android 12+ (API 31+) controlling:
|
|
- cloudBackup: Auto Backup to Google Drive
|
|
- deviceTransfer: Device-to-device transfers (e.g. phone setup wizard)
|
|
|
|
Since android:allowBackup="false" was set previously, we disable both.
|
|
-->
|
|
<data-extraction-rules>
|
|
|
|
<cloud-backup disableIfNoEncryptionCapabilities="false">
|
|
<exclude domain="root" />
|
|
<exclude domain="file" />
|
|
<exclude domain="database" />
|
|
<exclude domain="sharedpref" />
|
|
<exclude domain="external" />
|
|
</cloud-backup>
|
|
|
|
<device-transfer>
|
|
<exclude domain="root" />
|
|
<exclude domain="file" />
|
|
<exclude domain="database" />
|
|
<exclude domain="sharedpref" />
|
|
<exclude domain="external" />
|
|
</device-transfer>
|
|
|
|
</data-extraction-rules>
|