1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-27 08:21:03 +02:00

Android: Disable backup to Google Drive (#5114)

Ref: https://discourse.joplinapp.org/t/cant-do-a-clean-re-install-on-android-using-joplin-cloud
This commit is contained in:
Roman Musin 2021-06-24 12:24:03 +00:00 committed by GitHub
parent fe83491eab
commit 5047cf1027
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,9 +18,6 @@
Apps targeting Android 10 (sdk 29) can no longer freely access arbitrary paths on the shared storage.
This attribute allows to opt out of this restriction.
android:allowBackup: used to enable Android Backup which some users need:
https://github.com/laurent22/joplin/issues/4020
android:resizeableActivity: allows user to resize Joplin window
https://github.com/laurent22/joplin/issues/3547
-->
@ -29,7 +26,7 @@
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:allowBackup="true"
android:allowBackup="false"
android:networkSecurityConfig="@xml/network_security_config"
android:requestLegacyExternalStorage="true"
android:resizeableActivity="true"