I\'m trying to handle notification with Android Oreo (SDK 27).
Here is my code creating the NotificationChannel:
NotificationManagerCompat notificati
There is no createNotificationChannel()
method on NotificationManagerCompat
. You have to use the native NotificationManager
for that.
UPDATE 2019-07-29: As Onkar Nene points out, they finally added createNotificationChannel()
on NotificationManagerCompat
. Use androidx.appcompat:appcompat:1.1.0-rc01
or newer.