From 93f28f62984dcda1f870b48ad627b4ebc6ae68c9 Mon Sep 17 00:00:00 2001 From: Philipp Kapfer Date: Mon, 28 Aug 2023 10:16:40 +0200 Subject: [PATCH] Updated Kotlin and target SDK version --- .idea/kotlinc.xml | 2 +- app/build.gradle | 4 ++-- build.gradle | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.idea/kotlinc.xml b/.idea/kotlinc.xml index b1077fb..f8467b4 100644 --- a/.idea/kotlinc.xml +++ b/.idea/kotlinc.xml @@ -1,6 +1,6 @@ - \ No newline at end of file diff --git a/app/build.gradle b/app/build.gradle index 38a92ad..4637d55 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -24,15 +24,15 @@ android { keyPassword keystoreProperties['build.keyPassword'] } } - compileSdk 32 + compileSdk 33 namespace "it.kapfer.digitalesamt.liberator" defaultConfig { applicationId android.namespace minSdk 21 - targetSdk 32 versionCode 2 versionName "1.1" + targetSdk 33 } buildTypes { diff --git a/build.gradle b/build.gradle index f9ce01e..a37b4bb 100644 --- a/build.gradle +++ b/build.gradle @@ -2,7 +2,7 @@ plugins { id 'com.android.application' version '7.3.0' apply false id 'com.android.library' version '7.3.0' apply false - id 'org.jetbrains.kotlin.android' version '1.7.10' apply false + id 'org.jetbrains.kotlin.android' version '1.9.10' apply false } task clean(type: Delete) {