79685256

Date: 2025-06-30 20:30:40
Score: 1
Natty:
Report link

If anyone ends up here trying to fix 'jvmTarget is deprecated':

kotlinOptions {
    jvmTarget = '11'
}

Change it to this:

kotlin {
    compilerOptions {
        jvmTarget = JvmTarget.JVM_11
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: virtual-adam