My application has one activity which starts two services but does not bind them. If I select return button to exit application (I cannot see it in task manager), both of th
This is the behaviour expected. Services do not run in their own process. When you application is killed, your entire process dies with it.
In the documentation I attached, there is an orange block a page down (unfortunately, I don't think I can link to it :-( ) That will tell you pretty much what a service is in a nutshell.