NotificationManager notificationManager = | |
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); | |
String channelId = "some_channel_id"; | |
NotificationChannel notificationChannel = | |
notificationManager.getNotificationChannel(channelId); | |
notificationManager.deleteNotificationChannel(notificationChannel); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment