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/build.gradle | |
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/build.gradle')
-rw-r--r-- | app/build.gradle | 2 |
1 files changed, 1 insertions, 1 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' |