From 2b43fc4786731dada4b3fabcd2700ea7ff7c3380 Mon Sep 17 00:00:00 2001 From: pacien Date: Wed, 16 Sep 2020 07:37:15 +0200 Subject: 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 --- app/build.gradle | 2 +- app/src/main/AndroidManifest.xml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) (limited to 'app') 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 { defaultConfig { applicationId 'org.pacien.tincapp' minSdkVersion 21 - targetSdkVersion 29 + targetSdkVersion 30 multiDexEnabled true versionCode 30 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 @@ android:allowBackup="false" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" - android:requestLegacyExternalStorage="true" android:supportsRtl="true" android:theme="@style/AppTheme" tools:ignore="GoogleAppIndexingWarning"> -- cgit v1.2.3