I Found some codes for quit an Android application programatically. By calling any one of the following code in onDestroy() will it quit application entirely?
Try this
int pid = android.os.Process.myPid(); android.os.Process.killProcess(pid);