I have very strange situation. Having one app, I decided to create another one from the code of first one. I copied .xml files, copied .java files so that everythin
The Activity you want to receive onNewIntent() in should have
android:launchMode="singleTop"
Or add the flag tn intent
browserInt.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP| Intent.FLAG_ACTIVITY_SINGLE_TOP);
As documented in onNewIntent(Intent)