79214410

Date: 2024-11-22 09:44:31
Score: 0.5
Natty:
Report link

If you are using latest JDK to your project then you can make changes in build.gradle(app-level) and your project will run successfully.

compileOptions {
    sourceCompatibility JavaVersion.VERSION_21
    targetCompatibility JavaVersion.VERSION_21
}

and

kotlinOptions {
    jvmTarget = '21'
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Pratik Prakash Bindage