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-06-28 14:26:52 +02:00
parent 6f3725ea8b
commit a885e38265
1 changed files with 2 additions and 2 deletions

View 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"
}