Android | Bind Service Using A Messenger
In Android, services are used for long running operations. Service is an android component without a UI and runs on the main thread of the app itself. But at times there are situations where we deliberately spawn a separate process for the service, as it gives better performance, abstraction etc. […]