android: Set kotlin jvm target to 1.9

This commit is contained in:
Colin Edwards 2023-12-27 13:27:02 -06:00
parent 44080154b0
commit 8a3d144714
1 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ android {
targetCompatibility = JavaVersion.VERSION_1_9 targetCompatibility = JavaVersion.VERSION_1_9
} }
kotlinOptions { kotlinOptions {
jvmTarget = "1.8" jvmTarget = "1.9"
} }
packaging { packaging {
resources { resources {
@ -70,4 +70,4 @@ dependencies {
debugImplementation("androidx.compose.ui:ui-test-manifest") debugImplementation("androidx.compose.ui:ui-test-manifest")
implementation("androidx.appcompat:appcompat:1.6.1") implementation("androidx.appcompat:appcompat:1.6.1")
} }