Fixed starting send service on boot

This commit is contained in:
M66B 2019-02-28 09:37:37 +00:00
parent 30add955b4
commit f6d810fab1
1 changed files with 3 additions and 1 deletions

View File

@ -54,6 +54,7 @@ import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
import androidx.core.app.NotificationCompat;
import androidx.core.content.ContextCompat;
import androidx.lifecycle.LifecycleService;
import androidx.lifecycle.Observer;
@ -452,6 +453,7 @@ public class ServiceSend extends LifecycleService {
}
static void start(Context context) {
context.startService(new Intent(context, ServiceSend.class));
ContextCompat.startForegroundService(context,
new Intent(context, ServiceSend.class));
}
}