Declare compileOptions & kotlinOptions

This commit is contained in:
Goooler 2023-01-19 22:03:03 +08:00
parent 2e2ca51087
commit 9b1cf708aa
1 changed files with 7 additions and 0 deletions

View File

@ -94,6 +94,13 @@ android {
includeInApk false
includeInBundle false
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_11
}
}
kapt {