We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I implemented easy MVP in my application. Everything used to work fine.
But I have to update com.android.support:design to 27.1.1.
When I do this my presenter is not created in my activity :
@ActivityView(layout = R.layout.activity_login, presenter = LoginPresenter.class) public class LoginActivity extends AppCompatActivity implements LoginActivityContract.View { @Override protected void onStart() { super.onStart(); // Now presenter is injected. SharedPreferences pref = PreferenceManager .getDefaultSharedPreferences(this.getBaseContext()); this.presenter.init(pref, this.queue); ---> here presenter is null }
What am I doing wrong ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
Hi, I implemented easy MVP in my application. Everything used to work fine.
But I have to update com.android.support:design to 27.1.1.
When I do this my presenter is not created in my activity :
What am I doing wrong ?
The text was updated successfully, but these errors were encountered: