Added data extraction rules

This commit is contained in:
M66B 2022-08-14 22:02:59 +02:00
parent a11aa323c8
commit e0b59cea03
6 changed files with 28 additions and 0 deletions

View File

@ -103,10 +103,12 @@
android:name=".ApplicationEx"
android:allowBackup="false"
android:appCategory="productivity"
android:dataExtractionRules="@xml/data_extraction_rules"
android:description="@string/app_name"
android:enableOnBackInvokedCallback="true"
android:extractNativeLibs="true"
android:forceDarkAllowed="false"
android:fullBackupContent="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:networkSecurityConfig="@xml/network_security_config"

View File

@ -108,10 +108,12 @@
android:name=".ApplicationEx"
android:allowBackup="false"
android:appCategory="productivity"
android:dataExtractionRules="@xml/data_extraction_rules"
android:description="@string/app_name"
android:enableOnBackInvokedCallback="true"
android:extractNativeLibs="true"
android:forceDarkAllowed="false"
android:fullBackupContent="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:networkSecurityConfig="@xml/network_security_config"

View File

@ -108,10 +108,12 @@
android:name=".ApplicationEx"
android:allowBackup="false"
android:appCategory="productivity"
android:dataExtractionRules="@xml/data_extraction_rules"
android:description="@string/app_name"
android:enableOnBackInvokedCallback="true"
android:extractNativeLibs="true"
android:forceDarkAllowed="false"
android:fullBackupContent="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:networkSecurityConfig="@xml/network_security_config"

View File

@ -103,10 +103,12 @@
android:name=".ApplicationEx"
android:allowBackup="false"
android:appCategory="productivity"
android:dataExtractionRules="@xml/data_extraction_rules"
android:description="@string/app_name"
android:enableOnBackInvokedCallback="true"
android:extractNativeLibs="true"
android:forceDarkAllowed="false"
android:fullBackupContent="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:networkSecurityConfig="@xml/network_security_config"

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<data-extraction-rules>
<!-- https://developer.android.com/about/versions/12/behavior-changes-12#backup-restore -->
<cloud-backup>
<exclude domain="file" />
<exclude domain="database" />
<exclude domain="sharedpref" />
<exclude domain="external" />
<exclude domain="root" />
</cloud-backup>
<device-transfer>
<exclude domain="file" />
<exclude domain="database" />
<exclude domain="sharedpref" />
<exclude domain="external" />
<exclude domain="root" />
</device-transfer>
</data-extraction-rules>

View File

@ -103,10 +103,12 @@
android:name=".ApplicationEx"
android:allowBackup="false"
android:appCategory="productivity"
android:dataExtractionRules="@xml/data_extraction_rules"
android:description="@string/app_name"
android:enableOnBackInvokedCallback="true"
android:extractNativeLibs="true"
android:forceDarkAllowed="false"
android:fullBackupContent="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:networkSecurityConfig="@xml/network_security_config"