Jey
Jey

Reputation: 1511

WP7 Application update

I recently created an app for windows phone 7 and in final stage of development lets assume that its version is 1.0.. I can check if any update is available(eg. v1.1) through my website which returns a json. And if an update is available the user can download and install the update.

How do i setup it to automatically update it's version. i.e user just need to click OK if it prompts for an update and no need to go to marketplace..

Upvotes: 1

Views: 137

Answers (2)

Derek Lakin
Derek Lakin

Reputation: 16319

Having determined that there is an update for the user, you could inform the user, and then show the MarketplaceDetailTask to enable the user to update the application.

NOTE: To show the details for the current application, you do not need to specify a value for the ContentIdentifier property.

Upvotes: 4

Claus Jørgensen
Claus Jørgensen

Reputation: 26355

The only way to update apps is to use the Windows Phone Marketplace, where updating apps is a integrated part of it.

So, no, you can't do what you're trying to do.

Upvotes: 1

Related Questions