Skip to content Skip to sidebar Skip to footer

Android Studio Kaptdebugkoltin Internal Compiler Error

My kotlin android project just stops to build and run. I don't know what went wrong, but some days ago everything was fine. Now on rebuild it says following: Logs contains followi

Solution 1:

In my case helps "Build -> Clean Project" and "Build -> Rebuild Project"

Solution 2:

The problem was in gradle. There was only one needed line.

apply plugin: 'kotlin-kapt'

Now I added android plugin line. Everything now builds as it should.

apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'

Post a Comment for "Android Studio Kaptdebugkoltin Internal Compiler Error"