In Windows 8.1 Apps we can link to store apps using ms-windows-store protocol.
var storeURI = new Uri("ms-windows-store:PDP?PFN=<package family name>");
await Windows.System.Launcher.LaunchUriAsync(storeURI);
Is there any similar ways in Windows Phone 8.1? I prefer not to link to the webpage of the app on the store (http://windowsphone.com/s?appId=appGUID) which then opens the app in the store. I want to directly open the app in the store.
When you're connected to the Internet, Windows 8.1 clients obtain updates to Microsoft Store apps directly from the Microsoft Store app. The Microsoft Store app is visible on the Windows Start screen.
The Windows Phone Store officially shuts down today (via Neowin). Following the shutdown, you will no longer be able to download apps from the store. Windows Phone 8.1 has been out of official support for well over a year, but the shut down of the Windows Phone Store kills the operating system off even more.
Link to Windows on Android devices The Link to Windows app is preinstalled on select Samsung, HONOR, and Surface Duo devices that are running Android 9.0 or later. On such devices, you can find the Link to Windows app under the Quick Settings menu by swiping down from the top of your screen.
In Windows Phone 8.1, We can use ms-windows-store protocol to link to the store.
To detail page:
var uri = new Uri(string.Format("ms-windows-store:navigate?appid={0}", appid));
await Windows.System.Launcher.LaunchUriAsync(uri);
To review page:
var uri = new Uri(string.Format("ms-windows-store:reviewapp?appid={0}", appid));
await Windows.System.Launcher.LaunchUriAsync(uri);
To search page:
var uri = new Uri(string.Format(@"ms-windows-store:search?keyword={0}",keyword));
await Windows.System.Launcher.LaunchUriAsync(uri);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With