I'm trying to create a service that should be a singleton - I need one of it for the entire application.
I tried to implement this using a START_STICKY flag, but each time I bind to the service from an activity its onCreate is called and the activity is stopped, the service's onDestroy is called.
What am I missing?