-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Custom Action Handler not invoked for specific flows #470
Comments
Thanks for reporting this with detailed steps to repro @FDavidse20. I will check if I can reproduce this and will get back on this one... |
Hi @Ayyanchira, any updates on this issue? |
Hi @Ayyanchira , could you please address this issue? |
Just commenting here to say I have the same issue +1 |
We have set up push notifications with Custom Action (for the Open action).
We've implemented the necessary methods and followed the steps from the documentation for iOS and Android.
For iOS it's working flawlessly, (test) push notifications can be received and interacted with.
For Android it is working sort of.
Push notifications can be received and interacted with.
That means that the action handler is invoked when pressing a push notification.
And the performSomeAction() is called.
val config = IterableConfig.Builder() .setAutoPushRegistration(false) .setPushIntegrationName(pushIntegrationName) .setCustomActionHandler { action, _ -> action.type?.let { //do something, open a detail page in the app based on the data send in the action performSomeAction() } true } .build() IterableApi.initialize( application, apiKey, config )
However, there is a very specific flow in which that function is no longer called.
Steps to reproduce:
in other words, after hard closing the app, the flow will only work perfectly once more, after that something is broken.
I've tried all sorts of things debugging, but frankly haven't got a clue.
I hope you can help me, thank you.
Filip
The text was updated successfully, but these errors were encountered: