简体   繁体   English

在移动设备上激活Outlook加载项

[英]Outlook addin activation on mobile

We have developed a javascript add-in for Outlook. 我们为Outlook开发了一个JavaScript加载项。 When we install it using PowerShell command to O365, it is showing up in Outlook for Android and Outlook for iOS as expected. 当我们使用PowerShell命令将其安装到O365时,它会按预期显示在Android版Outlook和iOS版Outlook中。 If we install it to a hosted Exchange (2013 and 2016), the add-in is not visible in Outlook 2013. In mobiles there is an another problem. 如果我们将其安装到托管的Exchange(2013和2016)上,则该外接程序在Outlook 2013中不可见。在移动设备中,还有另一个问题。 If I go in Outlook for Android to the 'Settings/Add-ins', I can only select my O365 account, but can't select the hosted accounts, where I can activate my addin. 如果我在Outlook for Android中转到“设置/加载项”,则只能选择我的O365帐户,而不能选择可以在其中激活加载项的托管帐户。

In the manifest xml file we have the following: 在清单xml文件中,我们具有以下内容:

...
<Requirements>
    <Sets>
        <Set Name="MailBox" MinVersion="1.1" />
    </Sets>
</Requirements>
...
<VersionOverrides 
xmlns="http://schemas.microsoft.com/office/mailappversionoverrides" xsi:type="VersionOverridesV1_0">
<Description resid="appDescription" />
<Requirements>
  <bt:Sets DefaultMinVersion="1.3">
    <bt:Set Name="Mailbox" />
  </bt:Sets>
</Requirements>
... 
<!-- Override for mobile apps -->
<VersionOverrides xmlns="http://schemas.microsoft.com/office/mailappversionoverrides/1.1" xsi:type="VersionOverridesV1_1">
<Description resid="appDescription" />
    <Requirements>
        <bt:Sets DefaultMinVersion="1.3">
           <bt:Set Name="Mailbox" />
        </bt:Sets>
    </Requirements>
...

Do you have any idea why is the add-in not showing up on hosted Exchange servers? 您是否知道外接程序为什么不显示在托管的Exchange服务器上?

Thanks 谢谢

From the documentation : 文档中

Outlook Mobile Add-ins are supported on all Office 365 Commercial accounts, Outlook.com accounts, and support is coming soon to Gmail accounts. 所有Office 365商业帐户,Outlook.com帐户均支持Outlook Mobile加载项,并且Gmail帐户即将提供支持。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM