Hi
I’m using klaviyo-react-native-sdk to integrate push notifications on my react native app, I already added the configuration to connect Firebase Cloud Messaging with Klaviyo for android.
I’m able to push tokens to Klaviyo, but when I send a standard push notification is not displaying on the device, I tested sending a push notification from Firebase Console and is working fine.
I used the standard option to send the notifications and get the payloads

These are the payloads:
Firebase payload:
{
"notification":{
"android":{
},
"body":"test",
"title":"test push notification"
},
"originalPriority":1,
"priority":1,
"sentTime":1752786738312,
"data":{
},
"from":"----",
"messageId":"------",
"ttl":2419200,
"collapseKey":"---"
}
Klaviyo payload:
{
"originalPriority":1,
"priority":1,
"sentTime":1752779746234,
"data":{
"title":"test push notification",
"body":"test",
"notification_tag":"2025-07-17T19:15:45.993475+00:00",
"_k":"{\"Push Platform\":\"android\"}"
},
"from":"---",
"messageId":"-----",
"ttl":2419200
}
the difference is that Firebase sends the data in the notification property and Klaviyo sends it in the data property and is not recognized as a standard push notification.
Is this a Klaviyo bug or there is some configuration missing?
Thanks