Outlook Mobile加载项清单示例?

How*_*Lee 5 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#'...
Run Code Online (Sandbox Code Playgroud)

因为它并没有真正向我们展示OfficeApp标记或任何其他部分的清单部分.我想知道是否有任何样本显示移动设备的整体清单; 我只能找到桌面的那个.

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

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

它也失败了.

它甚至完成了吗?

Sla*_*nov 7

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

这不是文档所说的.我引述:"MobileFormFactor元素是在VersionOverrides v1.1模式中定义的,因此您需要为v1.0和v1.1都包含VersionOverrides元素." 请查看command-demo-manifest.xml eample.

  • 谢谢,它确实有帮助,但是,v1.1 VersionOverrides需要在v1.0 VersionOverrides中,这是我错过的部分. (3认同)