diff options
author | pacien | 2020-09-16 07:37:15 +0200 |
---|---|---|
committer | pacien | 2020-09-16 07:55:06 +0200 |
commit | 2b43fc4786731dada4b3fabcd2700ea7ff7c3380 (patch) | |
tree | f28831be292c04d359d665c337beade568fc06f6 /app | |
parent | 1f834b0ef8bcade30a1ec59b372a50a815fb566d (diff) | |
download | tincapp-2b43fc4786731dada4b3fabcd2700ea7ff7c3380.tar.gz |
app: set target api to 30 (Android 11)
The following works from API 21 to 30 (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
Diffstat (limited to 'app')
-rw-r--r-- | app/build.gradle | 2 | ||||
-rw-r--r-- | app/src/main/AndroidManifest.xml | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/app/build.gradle b/app/build.gradle index fa3d8c0..7c428d9 100644 --- a/app/build.gradle +++ b/app/build.gradle | |||
@@ -35,7 +35,7 @@ android { | |||
35 | defaultConfig { | 35 | defaultConfig { |
36 | applicationId 'org.pacien.tincapp' | 36 | applicationId 'org.pacien.tincapp' |
37 | minSdkVersion 21 | 37 | minSdkVersion 21 |
38 | targetSdkVersion 29 | 38 | targetSdkVersion 30 |
39 | multiDexEnabled true | 39 | multiDexEnabled true |
40 | versionCode 30 | 40 | versionCode 30 |
41 | versionName '0.30' | 41 | versionName '0.30' |
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index bf5c540..c86ec8f 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml | |||
@@ -32,7 +32,6 @@ | |||
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" | ||
36 | android:supportsRtl="true" | 35 | android:supportsRtl="true" |
37 | android:theme="@style/AppTheme" | 36 | android:theme="@style/AppTheme" |
38 | tools:ignore="GoogleAppIndexingWarning"> | 37 | tools:ignore="GoogleAppIndexingWarning"> |