Update build.gradle to set Java and Kotlin compatibility to version 11
Pull Request / test (push) Has been cancelled
Pull Request / pana (push) Has been cancelled

Signed-off-by: Tony <tonylu@tony-cloud.com>
This commit is contained in:
Tony
2026-05-11 10:57:29 +08:00
parent 784c6f3929
commit 9083c54cd2
+3 -3
View File
@@ -32,12 +32,12 @@ android {
compileSdkVersion 34
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = '1.8'
jvmTarget = '11'
}
sourceSets {