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
- Host: GitHub
- URL: https://github.com/khaouitiabdelhakim/notify_me
- Owner: khaouitiabdelhakim
- Created: 2023-03-14T22:05:31.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-03-19T18:28:34.000Z (over 2 years ago)
- Last Synced: 2025-02-11T09:17:57.486Z (8 months ago)
- Topics: alarmmanager, brodcast, kotlin, kotlin-android
- Language: Kotlin
- Homepage:
- Size: 107 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
}
```