fix(deps): update androidx.work to v2.10.0 (#1072)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [androidx.work:work-testing](https://developer.android.com/jetpack/androidx/releases/work#2.10.0) ([source](https://cs.android.com/androidx/platform/frameworks/support)) | `2.9.1` -> `2.10.0` | [![age](https://developer.mend.io/api/mc/badges/age/maven/androidx.work:work-testing/2.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/androidx.work:work-testing/2.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/androidx.work:work-testing/2.9.1/2.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/androidx.work:work-testing/2.9.1/2.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [androidx.work:work-runtime-ktx](https://developer.android.com/jetpack/androidx/releases/work#2.10.0) ([source](https://cs.android.com/androidx/platform/frameworks/support)) | `2.9.1` -> `2.10.0` | [![age](https://developer.mend.io/api/mc/badges/age/maven/androidx.work:work-runtime-ktx/2.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/androidx.work:work-runtime-ktx/2.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/androidx.work:work-runtime-ktx/2.9.1/2.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/androidx.work:work-runtime-ktx/2.9.1/2.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/pachli/pachli-android). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMzUuMiIsInVwZGF0ZWRJblZlciI6IjM4LjEzNS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nik Clayton <nik@ngo.org.uk>
This commit is contained in:
parent
3c85373ddc
commit
4431260985
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<issues format="6" by="lint 8.7.1" type="baseline" client="gradle" dependencies="false" name="AGP (8.7.1)" variant="all" version="8.7.1">
|
<issues format="6" by="lint 8.7.2" type="baseline" client="gradle" dependencies="false" name="AGP (8.7.2)" variant="all" version="8.7.2">
|
||||||
|
|
||||||
<issue
|
<issue
|
||||||
id="InvalidPackage"
|
id="InvalidPackage"
|
||||||
|
@ -1130,7 +1130,7 @@
|
||||||
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
|
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~">
|
||||||
<location
|
<location
|
||||||
file="src/main/res/values/donottranslate.xml"
|
file="src/main/res/values/donottranslate.xml"
|
||||||
line="259"
|
line="263"
|
||||||
column="19"/>
|
column="19"/>
|
||||||
</issue>
|
</issue>
|
||||||
|
|
||||||
|
@ -1141,7 +1141,7 @@
|
||||||
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
|
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
|
||||||
<location
|
<location
|
||||||
file="src/main/res/values/donottranslate.xml"
|
file="src/main/res/values/donottranslate.xml"
|
||||||
line="264"
|
line="268"
|
||||||
column="19"/>
|
column="19"/>
|
||||||
</issue>
|
</issue>
|
||||||
|
|
||||||
|
|
|
@ -570,13 +570,13 @@ fun enablePullNotifications(context: Context) {
|
||||||
// practice that may not be soon enough, so create and enqueue an expedited one-time
|
// practice that may not be soon enough, so create and enqueue an expedited one-time
|
||||||
// request to get new notifications immediately.
|
// request to get new notifications immediately.
|
||||||
Timber.d("Enqueing immediate notification worker")
|
Timber.d("Enqueing immediate notification worker")
|
||||||
val fetchNotifications: WorkRequest = OneTimeWorkRequest.Builder(NotificationWorker::class.java)
|
val fetchNotifications: WorkRequest = OneTimeWorkRequest.Builder(NotificationWorker::class)
|
||||||
.setExpedited(OutOfQuotaPolicy.DROP_WORK_REQUEST)
|
.setExpedited(OutOfQuotaPolicy.DROP_WORK_REQUEST)
|
||||||
.setConstraints(Constraints.Builder().setRequiredNetworkType(NetworkType.CONNECTED).build())
|
.setConstraints(Constraints.Builder().setRequiredNetworkType(NetworkType.CONNECTED).build())
|
||||||
.build()
|
.build()
|
||||||
workManager.enqueue(fetchNotifications)
|
workManager.enqueue(fetchNotifications)
|
||||||
val workRequest: WorkRequest = PeriodicWorkRequest.Builder(
|
val workRequest: WorkRequest = PeriodicWorkRequest.Builder(
|
||||||
NotificationWorker::class.java,
|
NotificationWorker::class,
|
||||||
PeriodicWorkRequest.MIN_PERIODIC_INTERVAL_MILLIS,
|
PeriodicWorkRequest.MIN_PERIODIC_INTERVAL_MILLIS,
|
||||||
TimeUnit.MILLISECONDS,
|
TimeUnit.MILLISECONDS,
|
||||||
PeriodicWorkRequest.MIN_PERIODIC_FLEX_MILLIS,
|
PeriodicWorkRequest.MIN_PERIODIC_FLEX_MILLIS,
|
||||||
|
|
|
@ -25,7 +25,7 @@ androidx-test-core-ktx = "1.6.1"
|
||||||
androidx-transition = "1.5.1"
|
androidx-transition = "1.5.1"
|
||||||
androidx-viewpager2 = "1.1.0"
|
androidx-viewpager2 = "1.1.0"
|
||||||
androidx-webkit = "1.12.1"
|
androidx-webkit = "1.12.1"
|
||||||
androidx-work = "2.9.1"
|
androidx-work = "2.10.0"
|
||||||
androidx-room = "2.6.1"
|
androidx-room = "2.6.1"
|
||||||
app-update = "2.1.0"
|
app-update = "2.1.0"
|
||||||
apollographql = "3.8.5"
|
apollographql = "3.8.5"
|
||||||
|
|
Loading…
Reference in New Issue