Fixed
Status Update
Comments
ra...@google.com <ra...@google.com>
ap...@google.com <ap...@google.com> #2
Project: platform/frameworks/support
Branch: androidx-master-dev
commit 84cb8085e76a849cfd139a2d47a55adb916fdd1a
Author: Sumir Kataria <sumir@google.com>
Date: Mon Feb 04 10:39:25 2019
Fix potential NPE in checkWakeLocks.
Test: N/A
Bug: 123835104
Change-Id: I961d1809d8adc7c53ab86863931e9d274794923e
M work/workmanager/src/main/java/androidx/work/impl/utils/WakeLocks.java
https://android-review.googlesource.com/894733
https://goto.google.com/android-sha1/84cb8085e76a849cfd139a2d47a55adb916fdd1a
Branch: androidx-master-dev
commit 84cb8085e76a849cfd139a2d47a55adb916fdd1a
Author: Sumir Kataria <sumir@google.com>
Date: Mon Feb 04 10:39:25 2019
Fix potential NPE in checkWakeLocks.
Test: N/A
Bug: 123835104
Change-Id: I961d1809d8adc7c53ab86863931e9d274794923e
M work/workmanager/src/main/java/androidx/work/impl/utils/WakeLocks.java
dr...@gmail.com <dr...@gmail.com> #3
Thanks for fixing it quickly again :)
ap...@google.com <ap...@google.com> #4
Seems like this didn't get the chance to be released on the latest beta-04 :/
Can we expect a new release next week?
Can we expect a new release next week?
Description
long interval = 900000; // 15 minutes
long flexInterval = (interval / 2);
workRequestBuilder = new PeriodicWorkRequest.Builder(MyWorker.class, interval, TimeUnit.MILLISECONDS, flexInterval, TimeUnit.MILLISECONDS);
When I enqueue this on my Android 7 device, the first periodic work does not fire immediately, but as expected only fires halfway through the interval, when the flex period starts.
But when this is enqueued on an Android 4 device (I'm using an Android 4.3 emulator but I noticed this first on a user's real Android 4.3 device), the first periodic work fires IMMEDIATELY.
Seems like flexInterval is not properly taken into account pre Android 5 (based on AlarmManager)??