Sub CreateNotification (Body As String) As Notification
' Dim notification As Notification
' notification.Initialize2(notification.IMPORTANCE_LOW)
' notification.Icon = "icon"
' notification.Number=0
' 'notification.AutoCancel=True
' notification.SetInfo("Tracking", Body, Main)
' Return notification
' Dim n As NB6
' n.Initialize("default", Application.LabelName, "DEFAULT").AutoCancel(True).SmallIcon(bm)
' n.Build("Title", "Content", "tag1", Me).Notify(4) 'It will be Main (or any other activity) instead of Me if called from a service.
Dim n As NB6
n.Initialize("default", Application.LabelName, "LOW").SmallIcon(bm)
n.SetDefaults(False, False, False)
Log(Body)
Return n.Build("MyApp", "Tracking...", "tag", Main)
End Sub