Windows 8.1 应用认证失败OSVersion和image size

Windows 8.1 App certification fails for invalid OSVersion and image size

我正在尝试将我的 WinJS 应用程序更新到新的 Windows 开发中心。 我在 Windows 8.1 上使用 App Cert Kit 3.4 上传之前检查了应用程序,一切正常。

在提交过程中,应用程序在认证时失败:

我的 appxmanifest 定义了 OS 版本:

<Prerequisites>
   <OSMinVersion>6.3.1</OSMinVersion>
   <OSMaxVersionTested>6.3.1</OSMaxVersionTested>
</Prerequisites>

我认为 6.3.1 适合 Windows8.1.

图像大小的奇怪之处在于 Visual Studio 2013 on Win8.1 告诉我资产闪屏的大小应该是 620x30。它甚至不允许我构建大小为 480x800 的 appx 包。在 Windows 10 机器上安装 Visual Studio 2015 - 与图像大小相同。

我还从 Win10 SDK 安装了最新的 WACK 工具,我在这个认证过程中遇到了与商店提交中相同的错误。

我应该定义哪个 OS 版本?如何应用在相应 IDE 上标记为无效的图像尺寸? (之后我需要操作 appxbundle 吗?)

感谢您的帮助!

好的,我找到了问题的解决方案: 我的应用程序包定义如下:

<Package xmlns="http://schemas.microsoft.com/appx/2010/manifest"
         xmlns:m2="http://schemas.microsoft.com/appx/2013/manifest"
         xmlns:m3="http://schemas.microsoft.com/appx/2014/manifest"
         xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest">

....

</Package>

我删除了 xmlns:mp 架构(无论如何都不会在此 appxmanifest 上使用)并且 WACK 工具继续运行,没有任何错误:)