feat: implement notification system for list events, including added, edited, and removed notifications with user preferences and background checks

This commit is contained in:
2025-11-11 20:23:42 +01:00
parent 607a0c4fcb
commit 3e029b16ca
9 changed files with 459 additions and 1 deletions
+4
View File
@@ -54,6 +54,7 @@ dependencies {
// Core Android
implementation 'androidx.core:core-ktx:1.12.0'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.2'
implementation 'androidx.lifecycle:lifecycle-process:2.6.2'
implementation 'androidx.activity:activity-compose:1.8.1'
// Compose
@@ -81,6 +82,9 @@ dependencies {
// Coroutines
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3'
// WorkManager for background checks/notifications
implementation 'androidx.work:work-runtime-ktx:2.9.0'
// Testing
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'