I have a Titanium app that's handling an incoming Universal Link by capturing the iOS continueactivity
event. This is the code I have:
if(OS_IOS){
Ti.App.iOS.addEventListener('continueactivity', function(e){
if(e.activityType === "NSUserActivityTypeBrowsingWeb"){
handleURL(e.webpageURL);
}
});
}
This code works perfectly while the app is being debugged but it seems like the event is not fired on the production build.
any ideas?
UPDATE: I just confirmed that this is also happening on the Ti Example App with SDK 5.3.0.