I'm integrating FCM to my project. But I'm getting below error in Log while notification received. (Error text color is blue)
W/FirebaseMessaging: Received message with unknown type: text
My code is like this:
public void onMessageReceived(RemoteMessage remoteMessage) {
Log.d("Notification", "Success");
sendNotification(remoteMessage);
}
In this code, the first line is not executing and it is not debugging also.