jaran
02/26/2021, 8:46 AMcompileKotlin {
kotlinOptions.useIR = true
}
this gives a build error for Android projects. If I add the following under android
in my build.gradle
file it seems to work. Am I correct?
kotlinOptions {
useIR = true
}
karenkovigor
02/26/2021, 8:50 AMjaran
02/26/2021, 9:04 AMA problem occurred evaluating project ':app'.
> Could not find method compileKotlin() for arguments [build_76sqb1kgwpwwcl6cpgdem0k5y$_run_closure3@24388d8e] on project ':app' of type org.gradle.api.Project.
jaran
02/26/2021, 9:04 AMIvan Kubyshkin [JetBrains]
03/01/2021, 6:43 AM