Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstefan-niedermann <info@niedermann.it>2020-03-18 11:01:31 +0300
committerstefan-niedermann <info@niedermann.it>2020-03-18 11:01:31 +0300
commit0f8c57633e75c898276ea74bc703fb4c68fb069e (patch)
treee23635f3423bfc9896a56f9ada9d4bb12e035402 /app/src/main/AndroidManifest.xml
parent417ec6cfbf38fe5370f745c81a4b820ba71745f4 (diff)
📎 Temporarily fix uploading attachments for Android 10
and catch some nasty cases where sharing from 3rd-party-apps won't work yet.
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r--app/src/main/AndroidManifest.xml5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 97c90204c..2fd1423b1 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -11,14 +11,17 @@
<application
android:name="it.niedermann.nextcloud.deck.Application"
android:allowBackup="true"
+ android:fullBackupContent="false"
android:hardwareAccelerated="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:networkSecurityConfig="@xml/network_security_config"
+ android:requestLegacyExternalStorage="true"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme"
- tools:ignore="GoogleAppIndexingWarning">
+ tools:ignore="GoogleAppIndexingWarning"
+ tools:targetApi="q">
<activity
android:name=".ui.MainActivity"