Results 16 comments of EricH

I should mention our `urlHandler` was designed to just let the OS handle our custom schema links, like this: ```ts iterableUrlHandler = (url: string, context: IterableActionContext) => { return false;...

TL/DR: We found and fixed the issue, it was particular to our project setup. Iterable push deep links are working correctly on `@iterable/react-native-sdk: "1.0.28"` with both OS's in all conditions...

@harrydema Short version of above post. 1. For testing, throw a 5 second `setTimeout` around your `Iterable.initialize(Config.ITERABLE_API_KEY, config);`. 2. If that fixes the deep link issue for you, then you...

@grifotv We simply went through all (hundreds) of our templates to remove the custom push payloads and place that data as query parameters in the `openURL` action. A bit of...

@grifotv Yes, we used `urlHandler` and only captured data via the url passed in. We didn't get any additional data from the push itself.

@roninopf Thanks for the quick response. This report was shorter than most as it's not really a bug, nor is it blocking us. We plan to use the more powerful...