more than one activity use in application click song notification already open application not reopen application how to solve this error
Intent notificationIntent = new Intent(this, MainActivity.class);
notificationIntent.setAction(Control.ACTION.MAIN_ACTION);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0,
notificationIntent, PendingIntent.FLAG_UPDATE_CURRENT);
<activity
android:name=".Activity.MainActivity"
android:launchMode="singleTop"
android:configChanges="orientation|keyboardHidden|screenLayout|screenSize" />
and i have declare android:launchMode="singleTop" all activity in android manifest file