]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
android: Set compile-/targetSdkVersion to 30
authorTobias Brunner <tobias@strongswan.org>
Mon, 28 Jun 2021 12:26:52 +0000 (14:26 +0200)
committerTobias Brunner <tobias@strongswan.org>
Tue, 13 Jul 2021 12:18:42 +0000 (14:18 +0200)
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

index 295c8cb7d9d8abe9a3bb72ff46e81c6664f5f0fa..beaeb5a1729dea96defcf0c96b930ff00bf84859 100644 (file)
@@ -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"
     }