I am using Evernote Android Jobs library to schedule task on my Android 8.1.0. The default minimum interval of periodic jobs is 15 minutes which is making debugging time-consuming. I found an article which says that we can use
JobManager.instance().getConfig().setAllowSmallerIntervalsForMarshmallow(true);
for shorter intervals in debugging but I am getting a squiggly line under getConfig() when I am using this. How to reduce the interval time?
Android-jobs version 1.2.6