Skip to content

Instantly share code, notes, and snippets.

@Arunshaik2001
Created November 19, 2022 15:52
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/7d57310d8f3e23627c6faa979c27e50c to your computer and use it in GitHub Desktop.
Save Arunshaik2001/7d57310d8f3e23627c6faa979c27e50c to your computer and use it in GitHub Desktop.
fun createNotificationChannel() {
if (Build.VERSION.SDK_INT > Build.VERSION_CODES.O) {
val notificationChannel = NotificationChannel(
"channel_id_1",
"channel1",
NotificationManager.IMPORTANCE_DEFAULT
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment