Had similar issue. The problem seemed to be that we where stil using java files not kotlin. (MainApplication.java => MainApplication.kt, MainActivity.java => MainActivity.kt).
Also do not forget to add "apply plugin: "org.jetbrains.kotlin.android"
at the top of your app/build.gradle file.