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
The requirement is to receive key-value pair from the push notification, and navigate to the required page. It works fine when the app is in background or foreground. But when the app is killed and we open the notification, the handler is not called.
The text was updated successfully, but these errors were encountered:
Irfan-KV
changed the title
setCleverTapPushClickedPayloadReceivedHandler not called when app is killed
setCleverTapPushClickedPayloadReceivedHandler not called when app is cold started from a push notification
Oct 8, 2021
This is a limitation of Flutter. When the app is cold started, we cannot set the callback for setCleverTapPushClickedPayloadReceivedHandler on the Flutter/Dart side of the app. The native side callback is already set but when it tries to provide the data to Flutter/Dart, since the app is cold-starting we cannot pass it.
The requirement is to receive key-value pair from the push notification, and navigate to the required page. It works fine when the app is in background or foreground. But when the app is killed and we open the notification, the handler is not called.
The text was updated successfully, but these errors were encountered: