Can we have multiple instance of a Service in Android ? I want a service which can make phone silent on a specific time and I want to re use that service to make the phone i
I do not think the service can be used for a such purpose. Service has to provide some functionality, but only one meaning, not for several different purposes. It's better to create additional service for that to keep code simple and clear.