This is a follow up question to this question:
Force application to restart on first activity
I am trying to restart my application from a fragment like that:
try using below lines:
Intent i = getBaseContext().getPackageManager()
.getLaunchIntentForPackage(getBaseContext().getPackageName());
i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(i);
ActivityCompat.finishAfterTransition(YourCurrentActivity.this);
ActivityCompat.finishAfterTransition(YourCurrentActivity.this); this line clear the instance after creating another activity