From a885e38265f20514f8ca42e7a3aee2ffc680541b Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Mon, 28 Jun 2021 14:26:52 +0200 Subject: [PATCH] android: Set compile-/targetSdkVersion to 30 This will be mandatory for new apps in August and for existing apps in November. However, several classes like AsyncTask are now deprecated so this needs some work to avoid warnings and problems in the future. --- src/frontends/android/app/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontends/android/app/build.gradle b/src/frontends/android/app/build.gradle index 295c8cb7d..beaeb5a17 100644 --- a/src/frontends/android/app/build.gradle +++ b/src/frontends/android/app/build.gradle @@ -1,12 +1,12 @@ apply plugin: 'com.android.application' android { - compileSdkVersion 29 + compileSdkVersion 30 defaultConfig { applicationId "org.strongswan.android" minSdkVersion 15 - targetSdkVersion 29 + targetSdkVersion 30 versionCode 74 versionName "2.3.2" }