EasyMVP
EasyMVP copied to clipboard
[Bug] ViewDelegate generator have problems with inner Interfaces in Kotlin
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