Konstantin Mikheev

Results 25 comments of Konstantin Mikheev

Hi, the library development stage is over, now it includes all required functionality. Any pull requests with fixes or minor features that fit into the library are welcome. Currently I...

Hi! 1. This is the default Nucleus behaviour. 2. Presenters get destroyed on pause because it is simpler. Note that they get destroyed only during the latest onPause. All activities...

Yes, this is how it should work now. I use this method for fragments as well: https://github.com/konmik/nucleus/blob/master/nucleus-example-with-fragments/src/main/java/nucleus/example/main/MainActivity.java#L19

I think that paging should deserve a wiki page: https://github.com/konmik/nucleus/wiki/Paging-example `deliver` and `deliverLatest` has been superseded by `deliverLatestCache`, `deliverFirst` and `deliverReplay`.

Sure, this is not a bug. When we construct a connection we don't want to create it every time we request something - we want our connections to be reused....

Hi, How about writing something like this? (pseudocode) ``` java class MyActivity { onCreate() { if (savedState == null) getPresenter().requestData(getIntent.getExtra()); } class MyPresenter { int id; onCreate(state) { this.id =...

@gautamjain Hi, forsee tons of problems with the approach because card's lifecycle will be too short and they will disappear while scrilling, so you will need to keep track of...

@kushaga Hi, you normally do not need to use `view()` directly, there is example you can look up into: https://github.com/konmik/nucleus/blob/master/nucleus-example/src/main/java/nucleus/example/main/MainPresenter.java Having null from `view()` is absolutely normal - you get...

@KScoder83 nothing changed. Try to re-import project or something.

@KScoder83 What if you just invalidate cache and restart? I have nucleus in several projects, it does fine. You can also download the support aar and expect it - classes...