Using the cordova-plugin-customurlscheme i added a custom extension that when click from apple messages opens the app. Is your urbanairship.deep_link supposed to capture the URL?
document.addEventListener("urbanairship.deep_link", function(event) {
var deepLink = event.deepLink
// handle deep link
return console.log('deep_link',deepLink)
}, false)
Comments
0 comments