Fixed
Status Update
Comments
se...@google.com <se...@google.com>
ap...@google.com <ap...@google.com> #3
Thank you for the quick fix.
Is there an ETA for the next release?
Is there an ETA for the next release?
fo...@google.com <fo...@google.com> #5
Project: platform/frameworks/support
Branch: androidx-master-dev
commit a1957df3709a06f4e6482fb0e4d39ded4f230a70
Author: Rahul Ravikumar <rahulrav@google.com>
Date: Mon Jul 29 09:48:05 2019
Workaround NPE in PersistableBundle.getExtras().
Test: Existing unit tests pass. Ran integration test app.
Fixes: b/138441699
Change-Id: I0b48e0009a7d83c343a3d26112b94c057470c281
M work/workmanager/src/main/java/androidx/work/impl/background/systemjob/SystemJobService.java
https://android-review.googlesource.com/1092870
https://goto.google.com/android-sha1/a1957df3709a06f4e6482fb0e4d39ded4f230a70
Branch: androidx-master-dev
commit a1957df3709a06f4e6482fb0e4d39ded4f230a70
Author: Rahul Ravikumar <rahulrav@google.com>
Date: Mon Jul 29 09:48:05 2019
Workaround NPE in PersistableBundle.getExtras().
Test: Existing unit tests pass. Ran integration test app.
Fixes:
Change-Id: I0b48e0009a7d83c343a3d26112b94c057470c281
M work/workmanager/src/main/java/androidx/work/impl/background/systemjob/SystemJobService.java
tg...@gmail.com <tg...@gmail.com> #6
se...@google.com <se...@google.com> #7
Which version of workmanager do you use? They're available since 2.8.0-alpha01
tg...@gmail.com <tg...@gmail.com> #8
I see, its the stable from 2021 (2.7.x)
Description
Creating a WorkQuery to represent a simple request is quite verbose. Eg, for a single id:
WorkQuery.Builder.fromIds(ImmutableList.of(id)).build())
It would be more convenient if:
static WorkQuery fromIds()
which returned a fully-built WorkQuery for simple cases.fromIds(UUID ids...)
to avoid needing to build a List inline.WorkManager has convenience methods for querying with single-element parameters, but not multiple-elements, and RemoteWorkManager lacks these entirely.