Skip to content
Snippets Groups Projects
Commit f694e0b5 authored by Kweku Adams's avatar Kweku Adams
Browse files

Note behavior change in documentation.

Bug: 118636037
Test: Run `m offline-sdk-docs` and check site at out/target/common/docs/offline-sdk/reference/android/app/job/JobInfo.html
Change-Id: Idf50234d2210d573c9d39479713da2552895d149
parent 7d528431
No related branches found
No related tags found
No related merge requests found
......@@ -55,6 +55,10 @@ import java.util.Objects;
* using the {@link JobInfo.Builder}.
* The goal here is to provide the scheduler with high-level semantics about the work you want to
* accomplish.
* <p> Prior to Android version {@link Build.VERSION_CODES#Q}, you had to specify at least one
* constraint on the JobInfo object that you are creating. Otherwise, the builder would throw an
* exception when building. From Android version {@link Build.VERSION_CODES#Q} and onwards, it is
* valid to schedule jobs with no constraints.
*/
public class JobInfo implements Parcelable {
private static String TAG = "JobInfo";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment