Eder Padilla
Eder Padilla

Reputation: 1726

Java.lang.ClassNotFoundException: Didn't find class Kotlin

This always appear after changing the code I rebuild the project and everything goes fine Every time I change my code and run it, this appear and the second time I run the code, it doesn't appears, what is the cause of this bug ?

Upvotes: 3

Views: 5019

Answers (1)

SAOUD SALIH HASSAN
SAOUD SALIH HASSAN

Reputation: 362

check project package name and add kotlin plugin & dependencies.

  apply plugin: 'kotlin-android'

  classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

Upvotes: 11

Related Questions