Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I used CurrentApp object to perform an In-app purchase in my application. The process worked fine and users successfully purchased different features. I had to give an update for the app, after a few bug fixes. After the update the users that had bought features through in-app purchase are complaining to have lost previously bought features. How does windows store persist the purchases? Do I need to manually store all transaction details within the app as well?

share|improve this question

1 Answer

if (!App.LicenseInformation.ProductLicenses[@"UpgradeOption1"].IsActive)       

{
//
THe content of code //

}

else

{

include the upgrade logic

}

hope it will helpful to you... Otherwise you can check out this(1)

and one more great blog

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.