Проблема возникает из-за того, что вы создаете канал с ID
, но отправляете уведомление в другом ID
:
// Here, you are using the package name as channel ID
NotificationChannel chan = new NotificationChannel(
getApplicationContext().getPackageName(),
"My Foreground Service",
NotificationManager.IMPORTANCE_LOW);
// But here, you are sending notifications to "MyChannelId"
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(
this, "MyChannelId");
Итак, я считаю, что вам просто нужно изменить идентификатор канала на MyChannelID
следующим образом:
NotificationChannel chan = new NotificationChannel(
"MyChannelId",
"My Foreground Service",
NotificationManager.IMPORTANCE_LOW);