Android Meeting SDK v5.7.6
1632956421762
Here are the release notes for the Android Meeting SDK v5.7.6.
AAN workflow in Custom UI
The Active Apps Notifier provides a notice to meeting and webinar participants when a host or other participant is using an app that accesses meeting or webinar content, such as video, audio, chat, and/or meeting files during a meeting. See Active Apps Notifier in the Zoom Help Center for details about this feature.
This version adds interfaces that you must enable in your SDK if you use the custom UI.
Interfaces: Active Apps Notifier (AAN)
When to display: When the user is in the meeting.
Related SDK methods
InMeetingAANController getInMeetingAANController()
- MobileRTCSDKError showAANPanel(FragmentActivity activity)
- MobileRTCSDKError hideAANPanel()
SDK workflow
Call the GetMeetingAANController while in a meeting with Custom UI enabled to get the AAN controller.
You must display the Active Apps Notifier icon in your meeting UI.
If the user clicks the Active Apps Notifier icon, call the ShowAANPanel() interface to show the AAN notification UI. Whenever you call this interface, the SDK will receive the latest AAN information.
If the user indicates to your app that they want to dismiss the AAN information window, call the hideAANPanel() interface to hide the AAN notification UI.
See the Active Apps Notifier section of the UI Legal Notices guide for more integration details.
Note
Add dependencies:
androidx.recyclerview:recyclerview:1.0.0
Set
usesCleartextTraffic
tofalse
inAndroidManifest.xml
by default.
Added
Upgraded the Zoom default UI to match the Zoom client v5.7.6, including but not limited to the Active Apps Notifier (AAN) feature.
Sharing status enum in
onSharingStatus.java
.Callback to get sharing status in
InMeetingShareListener.java
void onSharingStatus(SharingStatus status,long userId)
Active Apps Notifier(AAN) interfaces:
In
InMeetingAANController.java
:- MobileRTCSDKError showAANPanel(FragmentActivity activity)
- MobileRTCSDKError hideAANPanel()
In
`InMeetingService.java`
:- InMeetingAANController getInMeetingAANController()
New interface to hide the meeting invite URL:
In
ZoomUIService.java
- void hideMeetingInviteUrl(boolean hidden)
Deprecated
The following method is deprecated in
InMeetingShareController.java
void onShareActiveUser(long userId)
Remove
setHideFullPhoneNumber4PureCallinUser
inMeetingSettingsHelper.java
Fixed
Typo. Change
onMeetingNeedColseOtherMeeting
toonMeetingNeedCloseOtherMeeting
inInMeetingServiceListener.java
Issue where the
onAllowAttendeeChatResult
callback did not work.Issue where starting a meeting with the host's ZAK was not recognized as the host, so the user was placed in the waiting room or was not able to modify the meeting topic.
Did you like this update?