How do I call another application on my own phone and in the store? (As Facebook application does, calling the messenger)
How do I call another application on my own phone and in the store? (As Facebook application does, calling the messenger)
According to this SO response , in WP7 there is no effective way to do this, but in WP8 it is possible and you can use the protocol handlers through the launchUriAsync
.
For example, if you want to launch the app from Wi-Fi Settings you can do it.
await Windows.System.Launcher.LaunchFileAsync("ms-settings-wifi")
To launch Skype with a selected user you can call:
await Windows.System.Launcher.LaunchFileAsync("skype:myskypeid");
More information at: URI schemes for launching built-in apps for Windows Phone 8