【发布时间】:2017-06-30 20:19:06
【问题描述】:
我正在尝试为 Outlook 加载项添加移动部分。
我已在 https://dev.office.com/docs/add-ins/outlook/manifests/add-mobile-support 中搜索信息以获取要针对移动设备更新的清单。
但是,为此,我在尝试从管理加载项安装时遇到以下问题。
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">
它也失败了。
它已经完成了吗?
【问题讨论】:
标签: mobile outlook outlook-addin office-js