j2emanue

Results 12 comments of j2emanue

yah i cant get it to work with kotlin either.

ok. could you make it so that it accepts the presenter i am returning on onCreatePresenter ? I'll have to call this in all of our classes which is a...

so here is what i did: @NonNull @Override public LandingPagePresenter createPresenter() { return presenter; //confirmed this is not null } @Override public void setPresenter(@NonNull LandingPagePresenter presenter_notused) { super.setPresenter(presenter); //confirmed neither...

My presenter constructor takes arguments. Dagger builds it for me Get Outlook for Android ________________________________ From: James Shvarts Sent: Friday, December 22, 2017 6:51:05 PM To: sockeqwe/mosby Cc: j2emanue; Author...

I see no difference if I do this. I'm calling dagger inject before super.oncreate . Therefore my presenter already has a reference. I don't think createpresenter method is called before...

here is what i have done: My app component has the following declared: **LandingPagePresenter landingPagePresenter();** and in the landingPageActivity i took out the @Inject annotation so now the presenter declartion...

I think I have to inject dagger dependencies from onCreate because I have other dependencies that need to be injected in not just a present. For example analytics manager etc....

jshvarts , i assume that you meant myPresenter variable in the setter and not this.presenter : ``` @Override void setPresenter(LandingPagePresenter presenter) { this.myPresenter = presenter } ``` i treied exactly...

https://github.com/jaredrummler/MaterialSpinner . this one has it