Hello guys,
I created a Universal App and I submitted it to the store, but I have a problem:
I created in-app purchases with the same names in Windows Store Dev Center and in Windows Phone Dev Center, and I tried to buy from my app on the phone, but in the corresponding Windows Store app I can't see the license active.
I used this shared method to buy a product:
await CurrentApp.RequestProductPurchaseAsync(productname);
And this to check the license at the app start:
if (CurrentApp.LicenseInformation.ProductLicenses[productname].IsActive)
What's wrong?
Is there something I have to declare to SHARE in-app purchases among the 2 apps??