You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
In section 2.2.14 Arguments in Fragments and Activities from project_and_code_guidelines.md in the method getStartIntent(), you call: intent.putParcelableExtra(EXTRA_USER, user);
it must be: intent.putExtra(EXTRA_USER, user);
Thank you very much for this repo!.
Regards,
Guillermo
The text was updated successfully, but these errors were encountered:
Hi,
In section 2.2.14 Arguments in Fragments and Activities from project_and_code_guidelines.md in the method
getStartIntent()
, you call:intent.putParcelableExtra(EXTRA_USER, user);
it must be:
intent.putExtra(EXTRA_USER, user);
Thank you very much for this repo!.
Regards,
Guillermo
The text was updated successfully, but these errors were encountered: