Manpreet Kunnath
06/22/2020, 11:03 AMplugins {
kotlin("kapt")
}
and
apply(plugin = "kotlin-kapt")
But when I try to add this, it doesn't work.
dependencies {
kapt(SupportLibs.ANDROID_DAGGER_HILT_COMPILER)
}
It imports "org.jetbrains.kotlin.kapt3.base.Kapt.kapt" which says
Type mismatch.
Required: KaptOptions
Found: String
Am I missing something. I'm new to Kotlin DSL in android. I've searched for it a lot but couldn't find anything. Any help would be highly appreciated. Thanks