#278 fix restore from backup problem by disabling backup

This commit is contained in:
Julian Raufelder 2021-03-24 15:03:10 +01:00
parent e6712197af
commit 02cf2521fa
No known key found for this signature in database
GPG Key ID: 17EE71F6634E381D
4 changed files with 4 additions and 4 deletions

View File

@ -4,5 +4,5 @@
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<application android:allowBackup="true" />
<application android:allowBackup="false" />
</manifest>

View File

@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.cryptomator.domain">
<application android:allowBackup="true" />
<application android:allowBackup="false" />
</manifest>

View File

@ -25,7 +25,7 @@
<application
android:name=".CryptomatorApp"
android:allowBackup="true"
android:allowBackup="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:requestLegacyExternalStorage="true"

View File

@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.cryptomator.util">
<application android:allowBackup="true" />
<application android:allowBackup="false" />
</manifest>