aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorpacien2023-04-01 19:43:47 +0200
committerpacien2023-07-30 03:53:20 +0200
commit8f046f245fadd8dc7efdbd6c29adf07ca327836a (patch)
tree3ba83bec11acdc5228961185c4d7b680d95bd965 /app/src/main/AndroidManifest.xml
parent9df9f570be540acf1528b9fad1fc308b990eedb9 (diff)
downloadtincapp-8f046f245fadd8dc7efdbd6c29adf07ca327836a.tar.gz
app: do no prevent encrypted or local backups
Backup was disabled altogether to avoid leaking the private keys in clear. This relaxes this restriction only for client-side encrypted online backups or local device-to-device transfers.
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r--app/src/main/AndroidManifest.xml7
1 files changed, 5 insertions, 2 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 4afbf32..f3b35b6 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -31,12 +31,15 @@
31 31
32 <application 32 <application
33 android:name="org.pacien.tincapp.context.App" 33 android:name="org.pacien.tincapp.context.App"
34 android:allowBackup="false" 34 android:allowBackup="true"
35 android:dataExtractionRules="@xml/data_extraction_rules"
36 android:fullBackupContent="@xml/backup_rules"
35 android:icon="@mipmap/ic_launcher" 37 android:icon="@mipmap/ic_launcher"
36 android:label="@string/app_name" 38 android:label="@string/app_name"
37 android:supportsRtl="true" 39 android:supportsRtl="true"
38 android:theme="@style/AppTheme" 40 android:theme="@style/AppTheme"
39 tools:ignore="GoogleAppIndexingWarning"> 41 tools:ignore="GoogleAppIndexingWarning"
42 tools:targetApi="s">
40 43
41 <uses-library 44 <uses-library
42 android:name="org.apache.http.legacy" 45 android:name="org.apache.http.legacy"