我一直在努力在我的UWP中启用IAP,但是,它在XML文件(开发模式)的开发模式下工作正常,但它没有出现在生产环境(Windows商店)中。我的生产中没有错误。 我使用下面的代码显示所有IAP;
try
{
ListingInformation listings = await CurrentApp.LoadListingInformationAsync();
lstDonation.ItemsSource = listings.ProductListings.Values;
}
catch (Exception ex)
{
QuranLibrary.MessageService.showMessage(string.Format("Error Occured:
{0}", ex.Message), QuranLibrary.MessageType.Error);
}
我不明白,为什么它没有出现?
谢谢!
答案 0 :(得分:2)
几天后,它正在显示!