Android Question Notify Category

dibesw

Active Member
Licensed User
Longtime User
I have a notify in my app

B4X:
Sub notifica
    Dim cn As NotificationBuilder
    cn.Initialize
    cn.DefaultLight = True
    cn.DefaultVibrate = True
    cn.DefaultSound = True
    'cn.ContentInfo = "SumUp POS"
    'cn.ContentText = "SumUp POS"
    cn.ContentTitle = "SumUp POS"
    cn.SmallIcon="icon"
    cn.Notify(1)
End Sub
and this is my notify

n1.png


if tap to "TUTTE LE CATEGORIE" (all categories)

n2.png

Why I have two categories?
What does it mean "Senza categoria" (without category")??

THANKS
 

DonManfred

Expert
Licensed User
Longtime User
 
Upvote 0
Top