Recently I had a problem with @Named
qualifier in Kotlin. I thought that changing from this:
var boldTypeface: Typeface? = null
[Inject] set
into this
var boldTypeface: Typeface? = null
[Inject Named("bold")] set
or
var boldTypeface: Typeface? = null
[Inject] [Named("bold")] set
would solve my problem. But it didn't, it's not even compiling.