Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,6 @@ dependencies {
implementation libs.androidx.preference.ktx
implementation libs.androidx.recyclerview
implementation libs.androidx.swiperefreshlayout
implementation libs.androidx.work.runtime.ktx

implementation platform(libs.androidx.compose.bom)
implementation libs.androidx.compose.foundation
Expand Down Expand Up @@ -284,6 +283,8 @@ dependencies {
implementation libs.mozilla.ui.tabcounter
implementation libs.mozilla.ui.widgets

runtimeOnly libs.androidx.work.runtime

androidTestImplementation libs.androidx.test.core
androidTestImplementation libs.androidx.test.espresso.core
androidTestImplementation libs.androidx.test.espresso.idling.resources
Expand Down
12 changes: 6 additions & 6 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,20 @@ material = "1.14.0"

# AndroidX
androidx-activity = "1.13.0"
androidx-annotation = "1.10.0"
androidx-annotation = "1.11.0"
androidx-appcompat = "1.8.0"
androidx-browser = "1.10.0"
androidx-cardview = "1.0.0"
androidx-composeBom = "2026.08.00"
androidx-composeBom = "2026.09.00"
androidx-constraintlayout = "2.2.2"
androidx-coordinatorlayout = "1.3.0"
androidx-core = "1.19.0"
androidx-fragment = "1.9.0"
androidx-core = "1.19.1"
androidx-fragment = "1.9.1"
androidx-lifecycle = "2.11.0"
androidx-preference = "1.2.1"
androidx-recyclerview = "1.4.0"
androidx-swiperefreshlayout = "1.2.0"
androidx-work = "2.11.2"
androidx-work = "2.12.0"

# AndroidX Testing
androidx-test-core = "1.7.0"
Expand Down Expand Up @@ -76,7 +76,7 @@ androidx-lifecycle-viewmodel = { group = "androidx.lifecycle", name = "lifecycle
androidx-preference-ktx = { group = "androidx.preference", name = "preference-ktx", version.ref = "androidx-preference" }
androidx-recyclerview = { group = "androidx.recyclerview", name = "recyclerview", version.ref = "androidx-recyclerview" }
androidx-swiperefreshlayout = { group = "androidx.swiperefreshlayout", name = "swiperefreshlayout", version.ref = "androidx-swiperefreshlayout" }
androidx-work-runtime-ktx = { group = "androidx.work", name = "work-runtime-ktx", version.ref = "androidx-work" }
androidx-work-runtime = { group = "androidx.work", name = "work-runtime", version.ref = "androidx-work" }

# AndroidX Compose
androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "androidx-composeBom" }
Expand Down
Loading