79824682

Date: 2025-11-19 16:09:07
Score: 1
Natty:
Report link

In my case, the solution that worked was an improved version of @Hassnain Jamil's code:

Intent homeIntent = new Intent(Intent.ACTION_MAIN);
homeIntent.addCategory(Intent.CATEGORY_HOME);
homeIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK);
homeIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(homeIntent);
finishAffinity();
System.exit(0);
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Hassnain
  • Low reputation (0.5):
Posted by: Jawegiel