Android O reporting notification not posted to channel - but it is

前端 未结 8 1370
礼貌的吻别
礼貌的吻别 2020-12-05 06:52

Couple Android O notification questions:

1) I have created a Notification Channel (see below), am calling the builder with .setChannelId() (passing in the name of th

8条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-05 07:13

    You have to create a NotificationChannel first

    val notificationChannel = NotificationChannel("channelId", "channelName", NotificationManager.IMPORTANCE_DEFAULT)
    notificationManager.createNotificationChannel(notificationChannel);
    

    This is the only way to show notification for API 26+

提交回复
热议问题