Outlook Mobile 加载项清单示例?

Outlook Mobile Add-in manifest sample?

我正在尝试添加 Outlook 加载项的移动部分。

我已经在 https://dev.office.com/docs/add-ins/outlook/manifests/add-mobile-support 中搜索了要为移动设备更新的清单的信息。

但是,为此,我在 return 尝试从管理加载项安装时遇到以下问题。

This app can't be installed. 
The manifest file doesn't conform to the schema definition. The element 'OfficeApp' in namespace 'http://schemas.microsoft.com/office/appforoffice/1.1' has invalid child element 'VersionOverrides' in namespace 'http://schemas.microsoft.com/office/mailappversionoverrides/1.1'. 
List of possible elements expected: 'DisableEntityHighlighting' in namespace 'http://schemas.microsoft.com/office/appforoffice/1.1' as well as 'VersionOverrides' in namespace 'http://schemas.microsoft.com/office/mailappversionoverrides' as well as any element in namespace 'http://www.w3.org/2000/09/xmldsig#'...

因为它并没有真正向我们展示 OfficeApp 标签或任何其他部分的清单部分。 我想知道是否有任何示例可以显示手机的整个清单;我只能找到桌面版的。

我尝试将 VersionOverrides 更新到较新的版本

<VersionOverrides xmlns="http://schemas.microsoft.com/office/mailappversionoverrides/1.1" xsi:type="VersionOverridesV1_1">

也失败了。

完成了吗?

I tried just update the VersionOverrides to newer version

这不是文档所说的。我引用:"The MobileFormFactor element is defined in the VersionOverrides v1.1 schema, so you will need to include a VersionOverrides element both for v1.0 and v1.1." 请查看 command-demo-manifest.xml 示例。