Upgrade library dependencies

This commit is contained in:
Herbert Reiter
2022-04-14 19:49:03 +02:00
parent e0399f7075
commit 3cfe7a5a79
7 changed files with 186 additions and 118 deletions
+3 -2
View File
@@ -16,11 +16,12 @@
android:name=".WikiEngineApplication"
android:theme="@style/AppTheme"
android:usesCleartextTraffic="true"
android:allowBackup="false">
android:allowBackup="false"
android:fullBackupContent="false"
android:dataExtractionRules="@xml/data_extraction_rules">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<data-extraction-rules>
<cloud-backup>
<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>