Lower max number of JobScheduler IDs.

Some devices can only handle 25 job IDs, so I lowered it to 20.
master
Greyson Parrelli 2019-11-08 11:32:40 -05:00 committed by Alan Evans
parent 17a1fe97ca
commit 28bb88e347
1 changed files with 1 additions and 1 deletions

View File

@ -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;