[Solved] Android close an application


The best way to exit an app is using

finishActivity();

You don’t want to kill the whole process, it is not good practice.

solved Android close an application