Hi, i want to integrate Firebase Messaging into my app..
I follow this tutorial
www.b4x.com
But when app start i receive this message:
becouse "Receiver_Receive" not calling
Where is the problem?
Thank you
I follow this tutorial
FirebaseNotifications - Push messages / Firebase Cloud Messaging (FCM)
Updated tutorial: https://www.b4x.com/android/forum/threads/b4x-firebase-push-notifications-2023.148715/ Clarification: The nice thing about FCM is that your app doesn't need to run in order to receive messages. The FirebaseMessaging receiver will be started by the OS when a new message...

B4X:
java.lang.RuntimeException: Object should first be initialized (FirebaseMessaging).
becouse "Receiver_Receive" not calling
B4X:
Private Sub Receiver_Receive (FirstTime As Boolean, StartingIntent As Intent)
If FirstTime Then
fm.Initialize("fm")
End If
fm.HandleIntent(StartingIntent)
End Sub
Where is the problem?
Thank you