I want to show notification from my app in the lock screen of the phone.
I used the nb6 sample,
NB6 - Notifications Builder | B4X Programming Forum
Background For a long time there were two ways for B4A developers to show notifications: - Simple notifications with the built-in Notification object. - More complex notifications with barx's NotificationBuilder library. Thank you barx for all your work!!! The notifications features changed a...
and added code from here
NB6 and lock screen | B4X Programming Forum
Using the demo from here i have changed this sub to have Visibility("PUBLIC") Sub Notification_WithActions Dim n As NB6 n.Initialize("default", Application.LabelName, "HIGH").Visibility("PUBLIC").SmallIcon(smiley).AutoCancel(True) n.AddButtonAction(smiley, "Action 1", MyService...
when I click "Notification with actions" , the notification shows
then I 'lock' / 'screen lock' the phone and again open, the lock screen shows but the notification is not there.
I want the notification to show here too.
I have attached the changed project. Need guide to fix it.