Android Custom Meeting Activity not launched after updating to 5.15.3.14929

Description
Hello, We have an app that is using Zoom SDK 5.12.8.9901. Today we have tried updating the SDK to 5.15.3.14929. After updation the custom activity we use is not called, instead zoom’s default activity is lauched.

We have below steps followed

  1. We have res → values → config.xml with below code
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
    <string name="zm_config_conf_activity">com.app.ui.meeting.MyMeetingActivity</string>
</resources>
  1. Extended the meeting activity from NewMeetingActivity
    class MyMeetingActivity : NewMeetingActivity()

  2. Modified the xml included layout to

<include
            android:id="@+id/meetingContent"
            layout="@layout/zm_sdk_new_meeting_layout"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintTop_toTopOf="parent" />

After this when a new meeting is stated, the custom activity MyMeetingActivity is not lauched. Please help solve this issue.

Note: The MyMeetingActivity is present in a library project. Before updating to latest SDK, everything is working fine.

Which Android Meeting SDK version?
Android SDK: 5.15.3.14929

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