public Sub UpdateWidgetIcon
' Determine which image to display from the file name.
'-----------------------------------------------------
rv.SetImage("ImageViewWidgetIcon", LoadBitmap(File.DirAssets, kvs.Get("WidgetIconFileName")))
rv.UpdateWidget
nNotify.Initialize2(nNotify.IMPORTANCE_LOW)
nNotify.Icon = "icon"
nNotify.SetInfo("My app name is here", "This is the body text...", "")
Service.AutomaticForegroundNotification = nNotify
Service.StopAutomaticForeground
End Sub