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.