mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-02 11:01:23 +01:00
Prevent crash
This commit is contained in:
23
app/src/main/java/eu/faircode/email/JobDaily.java
Normal file
23
app/src/main/java/eu/faircode/email/JobDaily.java
Normal file
@@ -0,0 +1,23 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user