Dagger2 & Kotlin: lateinit property has not been initialized
I trying to inject presenter using Dagger, but I get an error: lateinit property loginPresenter has not been initialized. I can't find what I may be doing wrong. See the code above from my classes. This is the first time I'm facing this problem.
LoginActvity.kt
package com.xsavzh.vkfriends.activities
import android.content.Intent
import android.os.Bundle
import android.view.View
import android.widget.Button
import android.widget.TextView
import android.widget.Toast
import...