UWP 中未显示 IAP

IAP is not showing in UWP

我一直在努力在我的 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);  
    }

没看懂,为什么没有显示?

谢谢!

几天后,它出现了!