service-android
There are 5 repositories under service-android topic.
Suvam-Dawn/IntentService-Android
If Application has long running tasks, then may need to consider implementing services to run those log running operations in the background. Service like activity is a component in android. Services can be created by extending Service class and implementing required callback methods. Services created by extending Service class handle multiple requests concurrently and they run in the main thread. But if your requirement is that each service request be handled one at a time and in separate work thread, then the best way to create it is by extending IntentService class. IntentService class provides framework to take care of queuing requests, executing request one at time in worker thread and stopping service when not used. In this post, I will show how to implement IntentService.
hoductrihcmut123/zvoice-recorder
Voice recorder app (internship project)
nameisjayant/service-in-compose
In this repository , we will talk about services in android with jetpack compose.
juarezRoberto/android-broadcast-receiver
app with broadcast receiver and services basic examples
RamziJabali/aidl-client-service-demo-android
Implementing AIDL as a service to share code between two different applications. Using deep links to launch service application and then deep linking back to client application to be able to use service.