Reputation: 1726
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
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