Skip to content

Instantly share code, notes, and snippets.

@Arunshaik2001
Created November 23, 2022 15:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Arunshaik2001/5120a5eefb91531a36481ceeed0bf41f to your computer and use it in GitHub Desktop.
Save Arunshaik2001/5120a5eefb91531a36481ceeed0bf41f to your computer and use it in GitHub Desktop.
private fun getNotificationBuilder(): NotificationCompat.Builder {
return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
NotificationCompat.Builder(context, CHANNEL_NEW_BUBBLE)
} else {
NotificationCompat.Builder(context)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment