mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 19:57:04 +05:30
android: use WorkManager to update saved posts periodically
This commit is contained in:
parent
f05a90e281
commit
27a8d16487
6 changed files with 105 additions and 9 deletions
|
@ -2,11 +2,13 @@
|
|||
accompanist = "0.24.5-alpha"
|
||||
aurora = "1.1.0"
|
||||
coroutines = "1.6.1"
|
||||
hilt = "2.41"
|
||||
dagger = "2.41"
|
||||
hilt = "1.0.0"
|
||||
kotlin = "1.6.10"
|
||||
richtext = "0.11.0"
|
||||
serialization = "1.3.2"
|
||||
sqldelight = "1.5.3"
|
||||
workmanager = "2.8.0-alpha01"
|
||||
|
||||
[libraries]
|
||||
accompanist-swiperefresh = { module = "com.google.accompanist:accompanist-swiperefresh", version.ref = "accompanist" }
|
||||
|
@ -16,9 +18,12 @@ androidx-appcompat = "androidx.appcompat:appcompat:1.6.0-alpha01"
|
|||
androidx-browser = "androidx.browser:browser:1.4.0"
|
||||
androidx-core-ktx = "androidx.core:core-ktx:1.9.0-alpha02"
|
||||
androidx-core-splashscreen = "androidx.core:core-splashscreen:1.0.0-beta02"
|
||||
androidx-hilt-compiler = { module = "androidx.hilt:hilt-compiler", version.ref = "hilt" }
|
||||
androidx-hilt-work = { module = "androidx.hilt:hilt-work", version.ref = "hilt" }
|
||||
androidx-lifecycle-compose = "androidx.lifecycle:lifecycle-viewmodel-compose:2.5.0-alpha05"
|
||||
androidx-navigation-compose = "androidx.navigation:navigation-compose:2.5.0-alpha03"
|
||||
androidx-paging-compose = "androidx.paging:paging-compose:1.0.0-alpha14"
|
||||
androidx-work-runtime-ktx = { module = "androidx.work:work-runtime-ktx", version.ref = "workmanager" }
|
||||
aurora-component = { module = "org.pushing-pixels:aurora-component", version.ref = "aurora" }
|
||||
aurora-theming = { module = "org.pushing-pixels:aurora-theming", version.ref = "aurora" }
|
||||
aurora-window = { module = "org.pushing-pixels:aurora-window", version.ref = "aurora" }
|
||||
|
@ -33,8 +38,8 @@ compose-richtext-markdown = { module = "com.halilibo.compose-richtext:richtext-c
|
|||
compose-richtext-material = { module = "com.halilibo.compose-richtext:richtext-ui-material", version.ref = "richtext" }
|
||||
compose-richtext-ui = { module = "com.halilibo.compose-richtext:richtext-ui", version.ref = "richtext" }
|
||||
copydown = "io.github.furstenheim:copy_down:1.0"
|
||||
dagger-hilt-android = { module = "com.google.dagger:hilt-android", version.ref = "hilt" }
|
||||
dagger-hilt-compiler = { module = "com.google.dagger:hilt-compiler", version.ref = "hilt" }
|
||||
dagger-hilt-android = { module = "com.google.dagger:hilt-android", version.ref = "dagger" }
|
||||
dagger-hilt-compiler = { module = "com.google.dagger:hilt-compiler", version.ref = "dagger" }
|
||||
javapoet = "com.squareup:javapoet:1.13.0"
|
||||
kamel-image = "com.alialbaali.kamel:kamel-image:0.3.0"
|
||||
kotlin-coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "coroutines" }
|
||||
|
@ -51,5 +56,5 @@ testing-mockWebServer = "com.squareup.okhttp3:mockwebserver3-junit4:5.0.0-alpha.
|
|||
|
||||
[plugins]
|
||||
compose = "org.jetbrains.compose:1.1.1"
|
||||
hilt = { id = "com.google.dagger.hilt.android", version.ref = "hilt" }
|
||||
hilt = { id = "com.google.dagger.hilt.android", version.ref = "dagger" }
|
||||
sqldelight = "com.squareup.sqldelight:1.5.3"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue