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
{{ message }}
This repository was archived by the owner on Mar 3, 2020. It is now read-only.
I dug into the code and found that the "NotificationsManager.presentCard" will automatically log events such as dismiss, push opens, button click, etc.
The app successfully shows the Facebook CardActivity but I did not receive any events after dismissing the CardView.
Here is my onMessageReceived
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
Bundle dataBundle = new Bundle();
for (Map.Entry<String, String> entry : remoteMessage.getData().entrySet()) {
dataBundle.putString(entry.getKey(), entry.getValue());
}
}
I dug into the code and found that the "NotificationsManager.presentCard" will automatically log events such as dismiss, push opens, button click, etc.
The app successfully shows the Facebook CardActivity but I did not receive any events after dismissing the CardView.
Here is my onMessageReceived
My notification
My MainActivity
Results
