// it works, but it did not change the xml document ?
// <IsActive>true</IsActive> and <IsTrial>true</IsTrial>
// are both still true, why ? it should have been isTrial = false, and isActive = true
var currentAppSimulator = Windows.ApplicationModel.Store.CurrentAppSimulator;
currentAppSimulator.licenseInformation.onlicensechanged = function (e) {
var e = e;
};
currentAppSimulator.requestAppPurchaseAsync(false).then(function (data) {
var app_receipt_data = data;
});
it works, but it did not change the xml document ?
<IsActive>true</IsActive> and <IsTrial>true</IsTrial>
are both still true, why ? it should have been isTrial = false, and isActive = true
Is this is an error ?