Updater: Use Java 11

This is what AOSP uses since SDK 32

Change-Id: I6401a14cd2a00f8e3b8d0fe8ec3ff9ec215bd9c7
This commit is contained in:
Michael W
2025-01-11 21:21:45 +01:00
committed by Nolen Johnson
parent 9918f7ef91
commit 33d63d627d

View File

@@ -57,12 +57,12 @@ android {
}
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"
}
signingConfigs {