How Can we Check the New Version of app update is available in store [UWP] programmatically.

Sowmiya Krishnamoorthi 6 Reputation points
2020-08-05T12:27:55.163+00:00

I have a UWP app in the store. I uploaded an appxupload-File. Is there a way to determine at runtime if a newer version of the app is available in the store?
We have an UWP application available in MS Store,in which we have AppxBundle package to user toinstall the application.In this we need to check programmatically is there any high version available in the store,need to inform the user to update the new version of your application.

As suggested in Microsoft documentation,https://learn.microsoft.com/en-us/uw...checkupdateavailabilityasync?view=winrt-19041,we are not using .appinstaller file to install an uwp application.

Is there any way to check the higher version availability in store? inside the app with appxBundle or without .appinstaller file.

Universal Windows Platform (UWP)
0 comments No comments
{count} vote

1 answer

Sort by: Most helpful
  1. Richard Zhang-MSFT 6,936 Reputation points
    2020-08-05T13:52:17.92+00:00

    Hello,

    Welcome to Microsoft Q&A.

    If your app is submitted to the Microsoft Store, then you can check the updates through StoreContext.

    This document may help you:

    Download and install package updates from the Store

    You can get available package updates through StoreContext.GetAppAndOptionalStorePackageUpdatesAsync

    Thanks.

    1 person found this answer helpful.