You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Custom_FirebaseMessagingService.java contains the following code: boolean isLeanPlumPushNotification = (remoteMessage.getData().containsKey("lp_version"));
to check if push message is intended for leanplum, but leanplum SDK has another check inside: messageMap.containsKey("lp_message").
So, it looks like the sample and the actual SDK code are not aligned.
Which of the keys should I use?