Hi, I yesterday figure it out, it wasn’t a @Named problem. The problem is the GreenDAO library that doesn’t support Kotlin yet, and once converted the Dagger graph to Kotlin, the GreenDAO DaoMaster and DaoSession classes weren’t generated yet at that point. So the solution I found was to reorder the plugins in the gradle file in a way that will allow GreenDAO to generate the Dao classes before Kotlin compiles, and that was putting GreenDao on top of Kotlin plugins:

apply plugin: 'com.android.application'
apply plugin: 'org.greenrobot.greendao'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'

Thanks a lot for your response!

)