My iOS app opens when called with myapp://url but can't seem to get the all backs to fire consistently:
DeepLink.once('INTENT', function(intent){
console.log('1 Got some deep linked data...',intent);
alert("2:")
});
DeepLink.once('myapp', function(data, url, scheme, path, querystring){
console.log('2 Got some deep linked data...',data, url, scheme, path, querystring);
alert("3:" + url)
});
If I shut down the app and then click link in Safari on iOS it opens and the call backs fire.
If the app is already open, iOS switch to the app and opens it however the callbacks don't fire.
Awesome plugin Thanks. Just having a few issues:
My iOS app opens when called with
myapp://url
but can't seem to get the all backs to fire consistently:If I shut down the app and then click link in Safari on iOS it opens and the call backs fire. If the app is already open, iOS switch to the app and opens it however the callbacks don't fire.
I am using this with Meteor via https://atmospherejs.com/dispatch/deep-link
Any help appreciated
@raix