Just built my app as a release and noticed that when i do the back i get a log message saying "Activity_pause: UserClosed True" but the program is still running and i have to force close it to install again
Is there a correct procedure to end a program?
Im only using a VideoView, Panel, XmlSax and HttpUtils
You should post your code to let us help you (if we can )...
However there's no "special stuffs" to do to close an app, maybe something happens in Activity_pause, but I'd see the code to understand.
Are you doing something like "return true" in Activity_Pause?
Android, the os, kills the app when it wants. Activity.Finish ends the app but it still runs until the os kills the process. You can use ExitApplication to end it right away but it is better to let the os kill the process.