1
votes

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?

1

1 Answers

0
votes
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

and one more great blog