Custom WaitingRoomActivity for waiting for host admit

Description
Hello,
I;m using custom WaitingRoomActivity, and in the menifest i declare:


            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>

But when the host decalre that he should admit the perticipents before join the meeting, the perticipent goes to the Zoom WaitingRoomActivity (not the customized one).

What action should i add in the menifest to send the perticipent to the custom waiting room in this case?

Which Android Client SDK version?
4.6.21666.0603

To Reproduce(If applicable)
Steps to reproduce the behavior:

  1. Create a zoom meeting
  2. Join as host
  3. Press ‘More’ in the bottom footer
  4. Press ‘…’ in the bottom footer
  5. Check ‘Enable Waiting Room’ in the bottom footer
  6. Join with a perticipent
  7. The perticipent goes to the original waiting room

Smartphone (please complete the following information):

  • Device: Android TV
  • OS: Android 4.4

Hi @adi_uniper, thanks for using the dev forum.

It looks like the snippet from your app’s manifest was cut off. Can you please post the full snippet so that we can ensure everything is being done correctly?

Also, it seems that you are on a pretty old version of the SDK. Can you try updating to the latest version and letting me know if the issue persists?

Thanks!

Hi,

Thank you for response.

Here is the missing code:

        <intent-filter>
            <action android:name="com.unipercare.webconf.intent.action.JoinBeforeHost" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>

Unfortunately we can’t upgrade zoom SDK.
We are using a box with android 4.4 that newer ZOOM versions not support.

Hi @adi_uniper,

Thanks for the additional context. The approach you are using is only going to impact the join before host screen. If you want a custom waiting room UI, you will need to implement a custom meeting UI.

Thanks!

thanks for the awesome information.

Hi @jackyjoy123, thanks for using the dev forum.

I can’t verify that the package name in your action element is correct, but everything else looks correct to me. I assume you were looking for the waiting room UI rather than the join before host UI, right?

Thanks!

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.