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.
This commit is contained in:
Tobias Brunner
2021-07-13 14:18:42 +02:00
parent 6f3725ea8b
commit a885e38265
+2 -2
View File
@@ -1,12 +1,12 @@
apply plugin: 'com.android.application' apply plugin: 'com.android.application'
android { android {
compileSdkVersion 29 compileSdkVersion 30
defaultConfig { defaultConfig {
applicationId "org.strongswan.android" applicationId "org.strongswan.android"
minSdkVersion 15 minSdkVersion 15
targetSdkVersion 29 targetSdkVersion 30
versionCode 74 versionCode 74
versionName "2.3.2" versionName "2.3.2"
} }