Open
Description
When I try use contract interface in Kotlin eg:
interface XContract {
interface View {
...
}
interface Presenter {
...
}
}
ViewDelegate have problems to generate delegates properly. I found this:
import com.example.mvp.XContract$View;
instead of
import com.example.mvp.XContract.View;
I guess