IAP未在UWP中显示

时间:2016-01-02 05:20:30

标签: windows-10 windows-10-mobile windows-10-universal

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

IAP in Windows Store

我不明白,为什么它没有出现?

谢谢!

1 个答案:

答案 0 :(得分:2)

几天后,它正在显示!