Situation:
David Wasser answer helped to solve my problem.
My Activity is running in a foreground Service so I had to call startActivity() method from that Service context.
Intent intent = new Intent(context, MainActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
mServiceContext.startActivity(intent);