An open API service indexing awesome lists of open source software.

https://github.com/khaouitiabdelhakim/notify_me

this an app that can notify you for tasks you want to be notified about
https://github.com/khaouitiabdelhakim/notify_me

alarmmanager brodcast kotlin kotlin-android

Last synced: 7 months ago
JSON representation

this an app that can notify you for tasks you want to be notified about

Awesome Lists containing this project

README

          

## notify_me
Android offers several options for scheduling tasks to run at specific times, such as WorkManager, JobScheduler, and AlarmManager + BroadcastReceivers. However, due to the complexities involved, it can be challenging to choose the best method, especially with the added complication of doze mode.

In this app, I will demonstrate the approach I used in my app Notify Me, which utilizes AlarmManager + BroadcastReceivers to send daily reminder-notifications at a specific time.

`Notify Me Android App`

I'm using view binding feature, so do not forget to add it to the gradle app

```
buildFeatures {
viewBinding true
}
```