我的客户无法通过我的一个Windows 8.1商店应用进行应用内购买。
查看日志,我看到加载列表信息的调用:
await CurrentApp.LoadListingInformationAsync();
抛出FileNotFound异常
The system cannot find the file specified. (Exception from HRESULT: 0x80070002)'
知道为什么会抛出这个异常吗?
我们有不到100个应用内购买商品。
答案 0 :(得分:0)
你可以在你的设备上重现这个吗?我建议在UI线程上运行它:Deployment.Current.Dispatcher.BeginInvoke(() => await CurrentApp.LoadListingInformationAsync());