SDK client exposed PMI set password when joined a Zoom pro PMI meeting

We observed that our iOS /Android SDK client joined a Zoom pro PMI meeting, and at the SDK client ends exposed PMI set password on the mobile screen. Is there anyway that in the Zoom iOS/Android SDK client that we can turn this off, and not to leak the password information?

For iOS SDK, we just provide the following option which to hide the meeting title in the meeting UI, please have a try:
/*!
@brief Show/Hide meeting ID and meeting password in the meeting bar.
*/
@property (assign, nonatomic) BOOL meetingTitleHidden;

There is no option just for hiding meeting password.

For Android SDK, there existed an option to hide meeting password:

MeetingViewsOptions.NO_TEXT_PASSWORD

Best

How to make this setting in Android SDK?

@fernando.moobi

There is no option just for hidding meeting passwrord.

MeetingOptions.no_titlebar=true will hidden the top titile bar.

Hi @Fred_Luo, thanks!

The password and meeting Id can be hidden using:

MeetingOptions.meeting_views_options = NO_TEXT_PASSWORD + NO_TEXT_MEETING_ID;

Thanks Fred! :slight_smile:

-Tommy