Zoom SDK Update

Description
Our Android developers have been experiencing significant problems ever since the SDK was updated with the version zoom-sdk-android-5.14.0.12917.

The current SDK includes the entire layout code, but it does so separately rather than clubbed like it did in the previous version. This modification prevents us from building a canvas, which in turn creates a significant problem with the host’s video input, the attendee’s video output, the host’s screen share not being visible on the attendee’s side, and a white screen on the attendee’s side.

Which Android Meeting SDK version?
zoom-sdk-android-5.14.0.12917.

Screenshots
Host End

Participant End
Video

Troubleshooting Routes
The troubleshooting attempt types you’ve already exhausted, including testing with the appropriate sample app (found on Zoom · GitHub).

Smartphone (please complete the following information):

  • Device: All
  • OS: Android

Additional context
The current SDK includes the entire layout code, but it does so separately rather than clubbed like it did in the previous version. This modification prevents us from building a canvas, which in turn creates a significant problem with the host’s video input, the attendee’s video output, the host’s screen share not being visible on the attendee’s side, and a white screen on the attendee’s side.

To further help understand and debug the issue here.

We are using the same resources of Zoom SDK.

Below is the code snippet .

<?xml version="1.0" encoding="utf-8"?>

<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android=“http://schemas.android.com/apk/res/android
xmlns:custom=“http://schemas.android.com/apk/res-auto
xmlns:tools=“http://schemas.android.com/tools
android:id=“@+id/rootLayout”
android:layout_width=“match_parent”
android:layout_height=“match_parent”
>

<us.zoom.uicommon.widget.view.ZmFoldableLayout
    android:id="@+id/fodable_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    custom:firstViewId="@+id/start_layout"
    custom:secondViewId="@+id/end_layout">

    <com.zipow.videobox.view.ZmUnexpectedReattachDetector
        android:layout_width="1px"
        android:layout_height="1px" />
   
    <com.zipow.videobox.conference.ui.view.ZmMainContentLayout
        android:id="@id/start_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

    <com.zipow.videobox.conference.ui.view.ZmMobileMainControlLayout
        android:id="@id/end_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        />


    <FrameLayout
        android:id="@id/zapp_layout_container_in_conf"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

</us.zoom.uicommon.widget.view.ZmFoldableLayout>

</androidx.constraintlayout.widget.ConstraintLayout>

Please help

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