mirror of
https://github.com/laurent22/joplin.git
synced 2025-02-04 19:16:07 +02:00
parent
ca5ac9696b
commit
ebe3ddcd21
@ -19,16 +19,19 @@
|
|||||||
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false" />
|
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false" />
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Android 10 introduced new "scoped storage" mechanism.
|
android:requestLegacyExternalStorage: Android 10 introduced new "scoped storage" mechanism.
|
||||||
Apps targeting Android 10 (sdk 29) can no longer freely access arbitrary paths on the shared storage.
|
Apps targeting Android 10 (sdk 29) can no longer freely access arbitrary paths on the shared storage.
|
||||||
The attribute "requestLegacyExternalStorage" below allows to opt out of this restriction.
|
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
|
||||||
-->
|
-->
|
||||||
<application
|
<application
|
||||||
android:name=".MainApplication"
|
android:name=".MainApplication"
|
||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
android:icon="@mipmap/ic_launcher"
|
android:icon="@mipmap/ic_launcher"
|
||||||
android:roundIcon="@mipmap/ic_launcher_round"
|
android:roundIcon="@mipmap/ic_launcher_round"
|
||||||
android:allowBackup="false"
|
android:allowBackup="true"
|
||||||
android:networkSecurityConfig="@xml/network_security_config"
|
android:networkSecurityConfig="@xml/network_security_config"
|
||||||
android:requestLegacyExternalStorage="true"
|
android:requestLegacyExternalStorage="true"
|
||||||
android:theme="@style/AppTheme">
|
android:theme="@style/AppTheme">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user