foregroundappchecker
foregroundappchecker copied to clipboard
[BUG] Android 8+ service stops
The way you start service is killed by OS after 20 seconds
Please have a lecture: https://developer.android.com/about/versions/oreo/background
Use startForegroundService()
method instead of startService().
if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
ctx.startForeground(NOTIFICATION_ID, mBuilder.build());
} else {
NotificationManagerCompat notificationManager = NotificationManagerCompat.from(ctx);
notificationManager.notify(NOTIFICATION_ID, mBuilder.build());
}
...