Hey everyone, I’m integrating Kotlin into a project using Java 8, AS 3.0. I intend on removing
@Data
lombok annotations and using Kotlin data classes instead. However, I’m getting
java.lang.ClassNotFoundException: kotlin.jvm.internal.Intrinsics
, which seems to suggest my Kotlin code isn’t being brought into my project.
I have in the global `build.gradle`:
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.1.2-4"
and in my app module `build.gradle`:
apply plugin: 'kotlin-android'