android: set kotlin target to 9

The naming scheme was changed in kotlin but not java after java 8
This commit is contained in:
Colin Edwards 2023-12-27 13:34:37 -06:00
parent 8a3d144714
commit 5f7f1d738d
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ android {
targetCompatibility = JavaVersion.VERSION_1_9 targetCompatibility = JavaVersion.VERSION_1_9
} }
kotlinOptions { kotlinOptions {
jvmTarget = "1.9" jvmTarget = "9"
} }
packaging { packaging {
resources { resources {