Brad Hesse

Results 14 comments of Brad Hesse

This PR is not necessary as the SDK already waits for an observer to be added before it triggers the `opened` event. The race condition scenario described in the initial...

@ZalesskyMaxim I don't understand what you are asking when you ask "How can I handle grouped push notification"? What do you mean?

@ArgusMagnus This is definitely a bug we will be fixing - however - I would also recommend that you look at how often you are calling `GetTags` and make sure...

@amjaliks I have tested this issue and have been unable to reproduce it. Is this issue still occurring for you? Closing due to inactivity - if this issue is still...

@atilsamancioglu can you describe your issue a bit more especially the “APNS delegate”..? Are you talking about the “deprecated app delegate methods” warning? Is the issue basically that your phone...

@junalmeida This is not a bug - by default the SDK will open URL's with an in-app web view. You can turn this behavior off however by setting `kOSSettingsKeyInAppLaunchURL` to...

@junalmeida Are you sure that you've correctly set up the deep link with the system (iOS)? If you set `kOSSettingsKeyInAppLaunchURL` to `false`, the SDK will simply call `UIApplication.shared.openURL`, which respects...

https://developer.apple.com/library/archive/documentation/General/Conceptual/AppSearch/UniversalLinks.html?utm_source=revxblog

@junalmeida There's a lot more you have to do to get deep links to work (Apple calls them _Universal Links_). Did you implement the `AppDelegate` code in ObjC/Swift yourself, or...

@junalmeida Good observation! Here is what I would recommend: deep links are really only useful for _other_ apps or a website to be able to open your app directly. But...