I would remove the flag singleTopin the manifest and instead add it as a flag for my own purposes, where you need them, using:
intent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
Then in the case when you do not need to use singleTop, do not set this flag.
source
share