mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-15 22:15:15 -05:00
23 lines
721 B
Java
23 lines
721 B
Java
|
|
package com.android.email.service;
|
|
|
|
import com.android.email.MessagingController;
|
|
|
|
import android.content.BroadcastReceiver;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
|
|
public class BootReceiver extends BroadcastReceiver {
|
|
public void onReceive(Context context, Intent intent) {
|
|
if (Intent.ACTION_BOOT_COMPLETED.equals(intent.getAction())) {
|
|
MailService.actionReschedule(context);
|
|
}
|
|
else if (Intent.ACTION_DEVICE_STORAGE_LOW.equals(intent.getAction())) {
|
|
MailService.actionCancel(context);
|
|
}
|
|
else if (Intent.ACTION_DEVICE_STORAGE_OK.equals(intent.getAction())) {
|
|
MailService.actionReschedule(context);
|
|
}
|
|
}
|
|
}
|