我目前正在开发Windows 8.1应用程序(商店应用程序)。当我在Windows应用商店提交认证时,我的申请被拒绝,我确信这是因为应用内购买功能。
在调试模式下,我已经通过WindowsStoreProxy.xml文件测试了应用内购买功能,一切运行良好。我还想过在提交之前修改“currentApp”变量的引用。 (CurrentApp而不是CurrentAppSimulator)。
我还将“服务”类别中的项目引用到Windows应用商店信息中心。
我在此项目后实施了应用内购买功能:http://code.msdn.microsoft.com/windowsapps/Licensing-API-Sample-19712f1a
我的应用被拒绝在Windows应用商店提交时,我没有任何明确的错误消息。我觉得当我的应用程序被微软测试时,它崩溃了,因为它还没有在商店上发布,所以我的项目还没有“初始化”。
以下是代码示例:
var currentApp = Windows.ApplicationModel.Store.CurrentApp;
currentApp.loadListingInformationAsync().done( function (listing) {
var item1 = listing.productListings.lookup("Item1");
var item2 = listing.productListings.lookup("Item2");
var item3 = listing.productListings.lookup("Item3");
var item4 = listing.productListings.lookup("Item4");
请问好吗?
由于