Reputation: 3483
What is the proper way to force users to update Metro Applications?
An example:
Let's say we have a metro style (Windows 8) application named "xyz".
We deployed "xyz" to Windows store. One week later we found a huge bug on the payment page.
So we should force the user to update the xyz application to new version.
What is the best practice for that? Does Microsoft provide a solution?
Upvotes: 4
Views: 559
Reputation: 836
You may find what you are looking for in Windows.ApplicationModel.Store.CurrentApp With this you can take the user to the app store page from a dialog stating that an update must be performed.
Upvotes: 1
Reputation: 29953
You can't force a user to update an app as such, but you do have some options...
Neither of these options mean that your app is forcing an upgrade, but they are making the user aware that an update is available, and that functionality may be impacted if they don't upgrade.
Upvotes: 5