System.exit(0) doesnt close all my activities? [duplicate]

Don’t use System.exit.

If you want user to close app from any Activity I suggest using startActivityForResult, checking returned value in onActivityResult in first Activity and calling finish() there too.

Leave a Comment