Android Library Module developed in Kotlin exported to Java Application causing Failed resolution of: Lkotlin/jvm/internal/Intrinsics
The kotlin-stdlib-jre7
artifact is not supposed to work on Android, which currently supports only Java 6 platform. When targeting Android, you should use kotlin-stdlib
, which is built for JRE 6:
// KOTLIN
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"