László Krasnyánszki

Results 15 comments of László Krasnyánszki

> There are no plans for Kotlin support yet because it requires a pretty tricky logic that is hard to implement with Kotlin comparing to Groovy. Which part is tricky?...

Okay, thanks! I'll check in the next few days/weeks and write here :)

Btw temporary solution: - Leave your settings.gradle in Groovy, not Kotlin DSL (.gradle.kts) - Use git { fetch { ... } } - Use the project dependency in your app...

Any plan to implement this? Btw big thanks for this great lib collection! :)

I think it should use different callbacks to avoid misunderstandings. But it could be a great feature, if the developer could subscribe/unsubscribe depends on Controller state. Currently on detach the...

You are right, I don't agree with attach / detachView() should be called in that case regardless of RetainViewMode. I just say it would be great a different callback, which...

agta1991 is AFK, but here is the current solution: ```kotlin abstract class BaseController(bundle: Bundle = Bundle()) : MviController(bundle), ViewContract { protected val KEY_VIEW_STATE = "MviController.viewState" private var lastViewState: VS? =...

Currenly I left this solution, because, as you wrote, it's easy to eat the full memory :)

Butterknife doesn't working.

My json models are in the android app module and if gradle task for ig-json-parser is uncommented, than it's generate correctly the models and I get NullPointerException for every view,...