aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpacien2020-09-16 07:37:15 +0200
committerpacien2020-09-16 07:55:06 +0200
commit2b43fc4786731dada4b3fabcd2700ea7ff7c3380 (patch)
treef28831be292c04d359d665c337beade568fc06f6
parent1f834b0ef8bcade30a1ec59b372a50a815fb566d (diff)
downloadtincapp-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
-rw-r--r--app/build.gradle2
-rw-r--r--app/src/main/AndroidManifest.xml1
-rw-r--r--readme.md8
3 files changed, 5 insertions, 6 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">
diff --git a/readme.md b/readme.md
index f70c6e3..070023f 100644
--- a/readme.md
+++ b/readme.md
@@ -29,10 +29,10 @@ The project can be built using the Gradle `build` task, on Linux.
29 29
30Requirements: 30Requirements:
31 31
32- Android Platform Tools 29 32- Android SDK Platform 30
33- Android Platform 29 33- Android NDK r21
34- Android SDK Tools 29 34- Android Platform-Tools 30
35- Android NDK 20 35- Android SDK Tools 26
36- CMake 36- CMake
37- automake 37- automake
38- autoconf 38- autoconf