2

I want to know if there's any way to navigate user to default music app of Windows Phone?

I mean, in Windows Phone 8 it should launch music+videos hub, and in Windows Phone 8.1 it should launch Xbox Music app.

(I prefer to navigate to Now Playing page directly. But even a way to just navigate to that app is better than nothing.)

Please even if you know a method that works with just one of OS versions (8, 8.1) share it with me.

ahmadali shafiee
  • 4,350
  • 12
  • 56
  • 91
Mahdi Ghiasi
  • 14,873
  • 19
  • 71
  • 119

1 Answers1

2

You should be able to launch it with the code:

await Windows.System.Launcher.LaunchUriAsync(new Uri("xboxmusic:"));

If you want to launch Nokia Music then:

await Windows.System.Launcher.LaunchUriAsync(new Uri("nokia-music:"));

Some references: SO answer and this nice blog post from Matt Lacey.

Community
  • 1
  • 1
Romasz
  • 29,662
  • 13
  • 79
  • 154