How to call another WP application

2

How do I call another application on my own phone and in the store? (As Facebook application does, calling the messenger)

    
asked by anonymous 01.03.2015 / 04:26

1 answer

1

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

    
01.03.2015 / 04:50