We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Per the readme, I added:
+ @Override + protected void onNewIntent(Intent intent) { + this.setIntent(intent); + super.onNewIntent(intent); + }
to my activity, and now I see build errors like:
protected void onNewIntent(Intent intent) { ^ symbol: class Intent location: class MainActivity
Is the README incomplete? Maybe missing an import statement?
The text was updated successfully, but these errors were encountered:
Yes I forgot to put in the readme that you should add: import android.content.Intent;
import android.content.Intent;
Sorry, something went wrong.
I've been seeing issues with android links this morning (per my other ticket). Do you think it's better to use master now?
No branches or pull requests
Per the readme, I added:
to my activity, and now I see build errors like:
Is the README incomplete? Maybe missing an import statement?
The text was updated successfully, but these errors were encountered: