I have two different activities. The first launches the second one. In the second activity, I call System.exit(0)
in order to force the application to close, bu
Keep in mind that when working with applications that use persistent socket connections, the finish()
method does not release the connection. Under normal circumstances, finish()
is the best option, but if you absolutely need to exit an app and release all resource it's using then use killProcess
. I've had no problems using it.