Skip to content

Instantly share code, notes, and snippets.

/fcm

Created January 23, 2018 07:03
Show Gist options
  • Save anonymous/bf6c571c33b997469c1e0df65306afc9 to your computer and use it in GitHub Desktop.
Save anonymous/bf6c571c33b997469c1e0df65306afc9 to your computer and use it in GitHub Desktop.
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
int importance = NotificationManager.IMPORTANCE_HIGH;
NotificationChannel mChannel = new NotificationChannel(NOTIFICATION_CHANNEL_ID, title, importance);
mChannel.setDescription(notification);
mChannel.enableLights(true);
mChannel.setLightColor(ContextCompat.getColor(getApplicationContext(),R.color
.colorPrimary));
notificationManager.createNotificationChannel(mChannel);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment