I am using a cordova app, running in HTML5/Javascript and have followed the URI Activitation guide here:
http://msdn.microsoft.com/en-us/library/windows/apps/Hh452686%28v=win.10%29.aspx
My App Launches from the URI that I've registered in the package.appxmanifest, but I cannot retrieve the URI. The sample code indicates that I need to register for the "activated" event, ie:
WinJS.Application.addEventListener("activated", onActivateHandler, false);
And then the uri is in the event args.
Unfortunately, this event doesn't seem to get raised within the Cordova application. Any suggestions on what else I can try, or does anyone have a solution?