diff --git a/apex/jobscheduler/framework/java/android/app/job/JobInfo.java b/apex/jobscheduler/framework/java/android/app/job/JobInfo.java index 4c8ab9385903f..90f2f5e0b1c3f 100644 --- a/apex/jobscheduler/framework/java/android/app/job/JobInfo.java +++ b/apex/jobscheduler/framework/java/android/app/job/JobInfo.java @@ -1462,7 +1462,7 @@ public class JobInfo implements Parcelable { *
    *
  1. Run as soon as possible
  2. *
  3. Be less restricted during Doze and battery saver
  4. - *
  5. Have the same network access as foreground services
  6. + *
  7. Bypass Doze, app standby, and battery saver network restrictions
  8. *
  9. Be less likely to be killed than regular jobs
  10. *
  11. Be subject to background location throttling
  12. *
@@ -1483,7 +1483,7 @@ public class JobInfo implements Parcelable { * *

* Assuming all constraints remain satisfied (including ideal system load conditions), - * expedited jobs are guaranteed to have a minimum allowed runtime of 1 minute. If your + * expedited jobs will have a maximum execution time of at least 1 minute. If your * app has remaining expedited job quota, then the expedited job may potentially run * longer until remaining quota is used up. Just like with regular jobs, quota is not * consumed while the app is on top and visible to the user.