I have noticed where I added my white icon, which one does not see when pulling down the message, but I noticed that all other notifications from other apps then have a different icon color. Even the B4A Bridge changes its color. How can I do that?
Sub fm_MessageArrived (Message As RemoteMessage)
Log("Message arrived")
Log($"Message data: ${Message.GetData}"$)
mess = Message.GetData.Get("body")
Dim n As Notification
n.Initialize
' n.SetInfo(Message.GetData.Get("title"), Message.GetData.Get("body"), Main)
n.SetInfo2(Message.GetData.Get("title"), Message.GetData.Get("body"),"3", Main)
n.Icon = "icon"
n.Light = True
Log(Message.From)
n.Notify(1)
End Sub