Skip to content

Commit 296f8ca

Browse files
[All hosts] (unified manifest) Correct support for platforms that aren't directly supported (#5228)
* Clarify note and move to dedicated section * Fix link * Reformat section as a table * Update ms.date and note in includes file * Update ms.date
1 parent 8e69aa0 commit 296f8ca

5 files changed

+42
-9
lines changed

docs/develop/create-addin-commands-unified-manifest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -599,4 +599,4 @@ You've now completed adding a menu to your add-in. [Sideload and test it](../tes
599599
## See also
600600

601601
- [Add-in commands](../design/add-in-commands.md)
602-
- [Unified manifest for Microsoft 365](json-manifest-overview.md).
602+
- [Unified manifest for Microsoft 365](unified-manifest-overview.md)

docs/develop/unified-manifest-overview.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Office Add-ins with the unified app manifest for Microsoft 365
33
description: Get an overview of the unified app manifest for Microsoft 365 for Office Add-ins and its uses.
44
ms.topic: overview
5-
ms.date: 02/12/2025
5+
ms.date: 06/19/2025
66
ms.localizationpriority: high
77
---
88

@@ -75,6 +75,27 @@ There is a `"validDomains"` array in the manifest file that is used to tell Offi
7575

7676
To override this behavior in desktop platforms, add each domain you want to open in the add-in window to the list of domains specified in the `"validDomains"` array. If the add-in tries to go to a URL in a domain that is in the list, then it opens in the task pane in both Office on the web and desktop. If it tries to go to a URL that isn't in the list, then in Office on desktop, that URL opens in a new browser window (outside the add-in task pane).
7777

78+
## Client and platform support
79+
80+
Add-ins that use the unified manifest can be installed if the Office platform *directly* supports it.
81+
82+
To run an add-in on platforms that don't directly support the unified manifest, you must publish the add-in to [AppSource](https://appsource.microsoft.com/). When the app package that contains the unified manifest is deployed in AppSource, an add-in only manifest is generated from the unified manifest and stored. This add-in only manifest is then used to install the add-in on platforms that don't directly support the unified manifest.
83+
84+
The following tables lists which Office platforms directly support add-ins that use the unified manifest.
85+
86+
| Client/platform | Support for add-ins with the unified manifest|
87+
| ----- | ----- |
88+
| Office on the web | Directly supported |
89+
| Office on Windows (Version 2304 (Build 16320.00000) or later) connected to a Microsoft 365 subscription | Directly supported |
90+
| [new Outlook on Windows](https://support.microsoft.com/office/656bb8d9-5a60-49b2-a98b-ba7822bc7627) | Directly supported |
91+
| Office on Windows (prior to Version 2304 (Build 16320.00000)) connected to a Microsoft 365 subscription | Not directly supported |
92+
| Office on Windows (perpetual versions) | Not directly supported |
93+
| Office on Mac | Not directly supported |
94+
| Office on mobile | Not directly supported |
95+
96+
> [!NOTE]
97+
> If you're deploying an add-in in the [Microsoft 365 Admin Center](../publish/publish.md) and require it to run on platforms that don't directly support the unified manifest, the add-in must be a published AppSource add-in. Custom add-ins or line-of-business (LOB) add-ins that use the unified manifest can't currently be deployed in the Microsoft 365 Admin Center.
98+
7899
## Sample unified manifest
79100

80101
The following is an example of a unified app manifest for an add-in. It doesn't contain every possible manifest property.
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
11
> [!NOTE]
2-
> Office Add-ins that use the unified manifest for Microsoft 365 are *directly* supported in Office on the web, in [new Outlook on Windows](https://support.microsoft.com/office/656bb8d9-5a60-49b2-a98b-ba7822bc7627), and in Office on Windows connected to a Microsoft 365 subscription, Version 2304 (Build 16320.00000) or later.
3-
>
4-
> When the app package that contains the unified manifest is deployed in [AppSource](https://appsource.microsoft.com/) or the [Microsoft 365 Admin Center](../publish/publish.md) then an add-in only manifest is generated from the unified manifest and stored. This add-in only manifest enables the add-in to be installed on platforms that don't directly support the unified manifest, including Office on Mac, Office on mobile, subscription versions of Office on Windows earlier than 2304 (Build 16320.00000), and perpetual versions of Office on Windows.
2+
> For information on clients and platforms that *directly* support Office Add-ins that use the unified manifest for Microsoft 365, see [Office Add-ins with the unified app manifest for Microsoft 365](../develop/unified-manifest-overview.md#client-and-platform-support).

docs/outlook/compare-outlook-add-in-support-in-outlook-for-mac.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Compare Outlook add-in support in Outlook on Mac
33
description: Learn how add-in support in Outlook on Mac compares with other Outlook clients.
4-
ms.date: 02/29/2024
4+
ms.date: 06/19/2025
55
ms.localizationpriority: medium
66
---
77

@@ -11,8 +11,6 @@ You can create and run an Outlook add-in the same way in Outlook on Mac as in th
1111

1212
For more information, see [Deploy and install Outlook add-ins for testing](testing-and-tips.md).
1313

14-
For information about new UI support, see [Add-in support in Outlook on new Mac UI](#add-in-support-in-outlook-on-new-mac-ui).
15-
1614
| Area | Outlook on the web, Windows (new and classic), and mobile devices | Outlook on Mac |
1715
|:-----|:-----|:-----|
1816
| Supported versions of office.js| All APIs in Office.js. | All APIs in Office.js.<br><br>**NOTE**: In Outlook on Mac, only Version 16.35 (20030802) or later supports saving a meeting. Otherwise, the `saveAsync` method fails when called from a meeting in compose mode. See [Cannot save a meeting as a draft in Outlook for Mac by using Office JS API](https://support.microsoft.com/help/4505745) for a workaround. |
@@ -39,3 +37,11 @@ You can determine which UI version you're on, as follows:
3937
**New UI**
4038

4139
![New UI on Mac.](../images/outlook-on-mac-new.png)
40+
41+
## Support for add-ins with the unified manifest for Microsoft 365
42+
43+
Add-ins that use the [unified manifest for Microsoft 365](../develop/unified-manifest-overview.md) aren't directly supported in Outlook on Mac. To run this type of add-in, it must first be published to [AppSource](https://appsource.microsoft.com/). An add-in only manifest is then generated from the unified manifest, which enables the add-in to be installed in Outlook on Mac.
44+
45+
If you're deploying an add-in that uses the unified manifest in the [Microsoft 365 Admin Center](../publish/publish.md) and require it to run in Outlook on Mac, the add-in must be a published AppSource add-in. Custom add-ins or line-of-business (LOB) add-ins that use the unified manifest can't currently be deployed in the Microsoft 365 Admin Center.
46+
47+
For more information, see the "Client and platform support" section of [Office Add-ins with the unified app manifest for Microsoft 365](../develop/unified-manifest-overview.md#client-and-platform-support).

docs/outlook/outlook-mobile-addins.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Add-ins for Outlook on mobile devices
33
description: Outlook mobile add-ins are supported on all Microsoft 365 business accounts and Outlook.com accounts.
4-
ms.date: 10/17/2024
4+
ms.date: 06/19/2025
55
ms.localizationpriority: medium
66
---
77

@@ -73,6 +73,14 @@ Here are examples of scenarios that make sense in Outlook mobile.
7373

7474
![Animated GIF showing user interaction with an add-in in Outlook on Android.](../images/outlook-mobile-addin-interaction-android.gif)
7575

76+
## Support for add-ins with the unified manifest for Microsoft 365
77+
78+
Add-ins that use the [unified manifest for Microsoft 365](../develop/unified-manifest-overview.md) aren't directly supported in Outlook on mobile devices. To run this type of add-in, it must first be published to [AppSource](https://appsource.microsoft.com/). An add-in only manifest is then generated from the unified manifest, which enables the add-in to be installed in Outlook mobile.
79+
80+
If you're deploying an add-in that uses the unified manifest in the [Microsoft 365 Admin Center](../publish/publish.md) and require it to run in Outlook mobile, the add-in must be a published AppSource add-in. Custom add-ins or line-of-business (LOB) add-ins that use the unified manifest can't currently be deployed in the Microsoft 365 Admin Center.
81+
82+
For more information, see the "Client and platform support" section of [Office Add-ins with the unified app manifest for Microsoft 365](../develop/unified-manifest-overview.md#client-and-platform-support).
83+
7684
## Testing your add-ins on mobile
7785

7886
To test an add-in on Outlook mobile, first [sideload an add-in](sideload-outlook-add-ins-for-testing.md) using a Microsoft 365 or Outlook.com account in Outlook on the web, on Windows ([new](https://support.microsoft.com/office/656bb8d9-5a60-49b2-a98b-ba7822bc7627) or classic), or on Mac. Make sure your manifest is properly formatted to contain `MobileFormFactor` or it won't load in Outlook mobile.

0 commit comments

Comments
 (0)