Android Question FirebaseMessaging

tariqyounis

Member
Licensed User
Longtime User
Hello all
I wonder why this function Receiver_Receive is not running at all in a b4a project I created, where in the "PushExample" it is running just fine.

FirebaseMessaging:
Private Sub Receiver_Receive (FirstTime As Boolean, StartingIntent As Intent)
    If FirstTime Then
        fm.Initialize("fm")
    End If
    fm.HandleIntent(StartingIntent)
End Sub

Any advice
 
Top