When using a pendingIntent to start an activity and the activity is already active in the background, I can’t get the new intent’s extras.
getIntent returns the intent that started the activity but in this case, Android will just bring it back to front and call onResume.
I want to be able to get new Extras in order to update the activity.
How can I do it?
try
EDIT: Works when setting the activity launchmode to singleTask