Skip to content

Instantly share code, notes, and snippets.

@markchristopherng
Created October 13, 2018 02:06
Show Gist options
  • Save markchristopherng/0de4dde2bc530921c89eba859fbd1c06 to your computer and use it in GitHub Desktop.
Save markchristopherng/0de4dde2bc530921c89eba859fbd1c06 to your computer and use it in GitHub Desktop.
notificationBuilder = new NotificationCompat.Builder(context, channelId)
.setSmallIcon(icon)
.setContentTitle(title)
.setContentText(message)
.setStyle(new NotificationCompat.BigTextStyle().bigText(message))
.setAutoCancel(autoCancel)
.setSound(defaultSoundUri)
.setContentIntent(contentAction.actionIntent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment