diff options
author | pacien | 2020-09-09 20:06:52 +0200 |
---|---|---|
committer | pacien | 2020-09-10 01:16:49 +0200 |
commit | 2ca13684d9ae0a8f515a68d135d5b160a36f0bff (patch) | |
tree | e18a032037a1c3dd71913ec326053131214a5611 /app/src/main/AndroidManifest.xml | |
parent | 8d495467457b4ab648ef12d4682f8760041b4727 (diff) | |
download | tincapp-2ca13684d9ae0a8f515a68d135d5b160a36f0bff.tar.gz |
app: set target api to 29 (Android 10)
The following works from API 21 to 29 (included):
* creating a new network configuration
* private key encryption and decryption
* communication between apps and the tinc daemon
* communication between tinc daemon and the internet
The app seems to have issues with the new storage restriction on API 30
(Android 11).
GitHub: closes #97
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index c86ec8f..bf5c540 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml | |||
@@ -32,6 +32,7 @@ | |||
32 | android:allowBackup="false" | 32 | android:allowBackup="false" |
33 | android:icon="@mipmap/ic_launcher" | 33 | android:icon="@mipmap/ic_launcher" |
34 | android:label="@string/app_name" | 34 | android:label="@string/app_name" |
35 | android:requestLegacyExternalStorage="true" | ||
35 | android:supportsRtl="true" | 36 | android:supportsRtl="true" |
36 | android:theme="@style/AppTheme" | 37 | android:theme="@style/AppTheme" |
37 | tools:ignore="GoogleAppIndexingWarning"> | 38 | tools:ignore="GoogleAppIndexingWarning"> |