mirror of https://github.com/M66B/FairEmail.git
parent
3b9bf64578
commit
81368e7bdf
@ -1,23 +0,0 @@
|
||||
package eu.faircode.email;
|
||||
|
||||
import android.app.job.JobParameters;
|
||||
import android.app.job.JobScheduler;
|
||||
import android.app.job.JobService;
|
||||
import android.content.Context;
|
||||
|
||||
public class JobDaily extends JobService {
|
||||
@Override
|
||||
public boolean onStartJob(JobParameters params) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean onStopJob(JobParameters params) {
|
||||
return false;
|
||||
}
|
||||
|
||||
public static void cancel(Context context) {
|
||||
JobScheduler scheduler = (JobScheduler) context.getSystemService(Context.JOB_SCHEDULER_SERVICE);
|
||||
scheduler.cancel(1001);
|
||||
}
|
||||
}
|
Loading…
Reference in new issue