Skip to content

Commit

Permalink
Lower max number of JobScheduler IDs.
Browse files Browse the repository at this point in the history
Some devices can only handle 25 job IDs, so I lowered it to 20.
  • Loading branch information
greyson-signal authored and alan-signal committed Nov 9, 2019
1 parent 17a1fe9 commit 28bb88e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class JobSchedulerScheduler implements Scheduler {
private static final String PREF_NAME = "JobSchedulerScheduler_prefs";
private static final String PREF_NEXT_ID = "pref_next_id";

private static final int MAX_ID = 75;
private static final int MAX_ID = 20;

private final Application application;

Expand Down

0 comments on commit 28bb88e

Please sign in to comment.