From: Tobias Brunner Date: Mon, 28 Jun 2021 12:26:52 +0000 (+0200) Subject: android: Set compile-/targetSdkVersion to 30 X-Git-Tag: android-2.3.3^2~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a885e38265f20514f8ca42e7a3aee2ffc680541b;p=thirdparty%2Fstrongswan.git 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. --- diff --git a/src/frontends/android/app/build.gradle b/src/frontends/android/app/build.gradle index 295c8cb7d9..beaeb5a172 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" }