I have OnBoard Activity and Login Activity. In LoginActivity after successful login I am trying to clear onboard activity using below code:
startActivity(new Intent(context, HomeActivity.class).addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP|Intent.FLAG_ACTIVITY_CLEAR_TASK));
I've even tried Intent.FLAG_ACTIVITY_NO_HISTORY
but it's also not working. So what should I do?