On WindowsPhone you can launch some applications by using the URI associations. Now I understand and implemented the launching of another App by using:
Windows.System.Launcher.LaunchUriAsync(new System.Uri("<custom-uri-scheme>:<path>"));
But before we tell the Launcher to start the other App we would like to check if the App is actually installed.
Is it possible to check if there is an App present which responds to a given URI? I am looking for something similar to iOS's [[UIApplication sharedApplication] canOpenURL:<url>]