Is there anything else I am missing?
# android
k
Is there anything else I am missing?
stackoverflow 1
c
koufa: Did you also add
kapt { generateStubs = true }
to Gradle, this was vital to me.
Without it, Kotlin classes weren't found by Dagger Annotation processor and the
Dagger*
classes weren't generated.
k
@chris-hatton No you don’t need this anymore if you use the new kapt with
apply plugin: 'kotlin-kapt'
You should remove the
kapt { generateStubs = true }
c
Ahh, thank you, when did this come about?