Notify users about Zoom apps in meetings

The code on this page works with either the default UI or the custom UI.

Users in a meeting or webinar are notified and have the option to agree to have the meeting data accessed by third party applications like Zoom Apps or SDK applications. When one of these apps is present in a meeting, users must see an Active App Notifier (AAN). This keeps users informed about who can see their data and which data in the meeting is currently exposed.

The SDK provides a pre-built UI containing the AAN information. To display this UI, you first need to have the UIView that you would like to add this UI to and the origin point in order to display the AAN UI and pass this information into the SDK. Take note that the originPoint parameter only take effect on iPad device, the behavior of iPhones always pop-up from the bottom with the device width.

guard let meetingService = MobileRTC.shared().getMeetingService() else { return }
meetingService.showAANPanel(in: YOUR_UIVIEW)
MobileRTCMeetingService *meetingService = [[MobileRTC sharedRTC] getMeetingService];
if (!meetingService) {
    return;
}
[meetingService showAANPanelInView:YOUR_UIVIEW];

The SDK also lets you hide the AAN UI programmatically.

meetingService.hideAANPanel()
[meetingService hideAANPanel];

In addition to the AAN UI, there is a similar legal notice UI available related to the Zoom AI Companion. This legal notice is displayed in a similar way as the AAN UI, but it uses a different method.

meetingService.showDynamicNotice(forAICompanionPanel: YOUR_UIVIEW)
meetingService.hideDynamicNoticeForAICompanionPanel()
[meetingService showDynamicNoticeForAICompanionPanel:YOUR_UIVIEW];
[meetingService hideDynamicNoticeForAICompanionPanel];

For information about various legal notices you must include in your custom meeting UI, see UI legal notices.