Gradle DSL method not found: 'kapt()' Gradle DSL method not found: 'kapt()' android android

Gradle DSL method not found: 'kapt()'


Check if you have this in top of your app build.gradle?

apply plugin: 'kotlin-kapt'


add this line

apply plugin: 'kotlin-kapt'

if you used kapt in android library you must add kotlin-android plugin in your project

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


just add this line in your app-level of build.grale :

apply plugin: 'kotlin-kapt'

NOTE: under apply plugin: 'com.android.application'