EasyMVP icon indicating copy to clipboard operation
EasyMVP copied to clipboard

[Bug] ViewDelegate generator have problems with inner Interfaces in Kotlin

Open msarelo opened this issue 8 years ago • 0 comments

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

msarelo avatar Aug 13 '17 17:08 msarelo