79396369

Date: 2025-01-29 10:20:44
Score: 1
Natty:
Report link

Make sure your build.gradle.kts (Kotlin DSL) contains the correct JVM version settings

java {
    sourceCompatibility = JavaVersion.VERSION_11
    targetCompatibility = JavaVersion.VERSION_11
}
kotlin {
    compilerOptions {
        jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_11
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Davronbek Nabiyev