Buongiorno,
premetto che ho seguito tutte le indicazioni del post https://www.b4x.com/android/forum/threads/solved-notifiche-firebase.127382/#post-797710 , ma quando clicco su una delle notifiche arrivate non riesco a capire su quale ho cliccato ma vedo sempre il TAG dell'ultima notifica arrivata.
premetto che ho seguito tutte le indicazioni del post https://www.b4x.com/android/forum/threads/solved-notifiche-firebase.127382/#post-797710 , ma quando clicco su una delle notifiche arrivate non riesco a capire su quale ho cliccato ma vedo sempre il TAG dell'ultima notifica arrivata.
B4X:
Sub Process_Globals
Private fm As FirebaseMessaging
Dim NotifyCount As Int
End Sub
Sub Service_Create
fm.Initialize("fm")
End Sub
Public Sub SubscribeToTopics
fm.SubscribeToTopic("general") 'you can subscribe to more topics
End Sub
Sub Service_Start (StartingIntent As Intent)
If StartingIntent.IsInitialized Then fm.HandleIntent(StartingIntent)
Sleep(0)
Service.StopAutomaticForeground 'remove if not using B4A v8+.
End Sub
Sub fm_MessageArrived (Message As RemoteMessage)
Log("Message arrived")
Log($"Message data: ${Message.GetData}"$)
Dim n As Notification
n.Initialize
n.Icon = "icon"
n.Sound = True
NotifyCount=NotifyCount+1
Dim Tag As String = NotifyCount & " | " & Message.GetData.Get("title") & "|" & Message.GetData.Get("body")
Main.Tag = Tag
n.SetInfo2(Message.GetData.Get("title"), Message.GetData.Get("body"), Tag, Main)
n.Notify(NotifyCount)
End Sub