I have successfully implemented Android.App.Job.JobService in my app and I am wondering if there is a way I can reduce the 15 minute delay period during testing?
I would like if possible;
#if DEBUG
builder.SetPeriodic(5000);
#else
builder.SetPeriodic(900000);
#endif
At present it's quite tedious having to wait such a long period of time whilst testing.
Any help would be greatly appreciated.
You can now use enqueueUniquePeriodicWork method. It was added in 1.0.0-alpha03 release of the WorkManager.
Sample code