'Process_Globals
Private Notification As NotificationBuilder
Private Channel As NotificationChannelBuilder 'New object
Private ChannelID As String = "Boo_Name" '"Channel_1"
Private ChannelName As String = "Boo Name"
'Code in Sub
If Channel.ChannelsSupported Then
Channel.Initialize(ChannelID, ChannelName, Channel.IMPORTANCE_HIGH)
Channel.EnableLights = True
Channel.EnableVibration = True
Channel.Build
Notification.Initialize(Channel.ID)
Else
Notification.Initialize(Null)
End If