Outlook Mobile加载项清单示例?

时间:2017-02-12 22:25:58

标签: mobile outlook outlook-addin office-js

我正在尝试在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">

也失败了。

它甚至完成了吗?

1 个答案:

答案 0 :(得分:7)

  

我尝试将VersionOverrides更新为更新的版本

这不是文档所说的。我引用:&#34; MobileFormFactor元素在VersionOverrides v1.1模式中定义,因此您需要为v1.0和v1.1包含VersionOverrides元素。&#34;请查看command-demo-manifest.xml示例。