svenjacobs
09/15/2022, 6:48 AMandroid {
compileSdkVersion 33
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = "11"
}
}
I assume the Android Gradle plugin will desugar the bytecode to be compatible with Java 1.8 (or 1.6?) so what are the benefits of letting the Gradle plugin do this instead of using 1.8 as JVM target?MR3Y
09/15/2022, 12:45 PMsvenjacobs
09/15/2022, 12:48 PMsvenjacobs
09/15/2022, 12:52 PMMR3Y
09/15/2022, 1:06 PM