Hello everyone.

The Mixed Reality Forums here are no longer being used or maintained.

There are a few other places we would like to direct you to for support, both from Microsoft and from the community.

The first way we want to connect with you is our mixed reality developer program, which you can sign up for at https://aka.ms/IWantMR.

For technical questions, please use Stack Overflow, and tag your questions using either hololens or windows-mixed-reality.

If you want to join in discussions, please do so in the HoloDevelopers Slack, which you can join by going to https://aka.ms/holodevelopers, or in our Microsoft Tech Communities forums at https://techcommunity.microsoft.com/t5/mixed-reality/ct-p/MicrosoftMixedReality.

And always feel free to hit us up on Twitter @MxdRealityDev.
Options

App Update Notification

Hi all,
In our application, we notify the user about app update notification and we re-direct to Win Store of our application page using

  ` //build URI to launch store app
    var uriStore = new Uri(@"ms-windows-store://pdp/?productid=" + storeAppID);
    UnityEngine.Debug.Log("store URL : " + uriStore.ToString());

    LauncherOptions options = new Windows.System.LauncherOptions();
    var fallbackUri = new Uri(AppStoreDetails.GetAppURL());
    options.FallbackUri = fallbackUri;
    // Launch the URI
    var success = await Windows.System.Launcher.LaunchUriAsync(uriStore, options);`

Here we are successfully re-directed to the store page, but we have only Launch button available. When we navigate to any other option and come back to store page, we have option of Launch and Update.

Folks, please provide your inputs, Is there any protocol command that i need to add while constructing URI or any other option available to refresh the store page

Note : Unity 2017, VS 2017

Thanks.

Sign In or Register to comment.