Closed marekp97 closed 2 hours ago
@marekp97 Can you try setting the following in your build.gradle ?
kotlinOptions { jvmTarget = "1.8" }
No, then I get an error:
Gradle DSL method not found: 'kotlinOptions()'
Possible causes:
Your project may be using a version of the Android Gradle plug-in that does not contain the method (e.g. 'testCompile' was added in 1.1.0).
My react-native version: 0.72
@marekp97 Can you try setting the same in library build.gradle as i was not able to reproduce the issue ? kotlinOptions { jvmTarget = "1.8" }
@sriharshamadamanchi Yes, adding kotlinOptions { jvmTarget = "1.8" }
in the library solves the problem too. Can you add it in build.gradle to the new version?
@marekp97 New version 1.0.3 is released with above change
Hi, I have a question, is it possible to add JavaVersion.VERSION_17 in build.gradle?
My application won't build with 1_8:
Maybe I can set something so that older libraries also work with this one?