I am writing a service for my Android app and I am trying to understand how the binding mechanism works.
If I bind my service in the onCreate of an activity but I don\'t unbind
That happens when Android OS destroys Activity and finds that a ServiceConnection still bound to a running Service, so you need to unbind the service before destroying your Activity