I'm trying to handle notification with Android Oreo (SDK 27).
Here is my code creating the NotificationChannel:
NotificationManagerCompat notificationManager = NotificationManagerCompat.from(this);
// .. building mChannel, the NotificationChannel instance
notificationManager.createNotificationChannel(mChannel);
Android Studio tells this
Error:(67, 32) error: cannot find symbol method createNotificationChannel(NotificationChannel)
I've a dependency on support-compat:27.0.0 set into my core/build.gradle file:
compile 'com.android.support:support-compat:27.0.0'
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…