Asim LatifforCodefy Labs's Blogscodefylabs.hashnode.dev·May 26, 2024Introduction to Work Manager (Android)Contents What is WorkManager? Why and When to use WorkManager? Persistent Work and Types Features Relation to Coroutines, Alarm Manager and other APIs What is WorkManager? WorkManager is an Android Jetpack library that simplifies and manages b...DiscussAndroidworkmanager
sandhya bhatsandhyabhat.hashnode.dev·Feb 6, 2024Alarm Manager to setup reminders in an Android appAndroid provides AlarmManager class to run application code/events at a specific time, even if your app is not running at that time. Alarm Manager provides access to system alarm services. It holds a CPU wake lock as long as the receiver's onReceive(...Discuss2Articles1Week
Abu Yousufayousuf.hashnode.dev·Aug 24, 2023Schedule Exact Alarms with AlarmManager on AndroidIn Android Development precise task scheduling is essential for reliable and responsive applications. Recently in a project, I had to schedule a task at a precise time. I have used AlarmManager exact alarm in that project. I will share my learning a...Discuss·152 readsAndroid
Raghav Aggarwalavidraghav.hashnode.dev·Jun 26, 2023Simplifying AlarmManager: Understanding Alarm Scheduling in AndroidAfter reading the official documentation of AlarmManager, I found it a little hard to understand. This is my attempt to simplify it and explain things more easily. I hope you enjoy it. WorkManager: "My Documentation is difficult to get" Before begin...Discuss·11 likes·419 readsAndroid