Video sdk not working in React Native after rebuilding the app after few months

Description
I have developed an app with Zoom video SDK integration in react native. The Zoom session was working fine in debug and production both. But now I had to do a bug fix in the app that is unrelated to Zoom and now Zoom sessions are not working. All I am getting is this error “zoomVideoSDKError_Session_Join_Failed”. I have checked everything nothing has changed but still I am getting this not-clear error.

Errors
zoomVideoSDKError_Session_Join_Failed

Which React Native Video SDK version?
1.6.2

Which React Native version?
68.2

Video SDK Code Snippets

wait zoom.joinSession({
        sessionName: params.sessionName,
        token: token,
        userName: params.displayName,
        audioOptions: {
          connect: true,
          mute: route.params.isMuted,
        },
        videoOptions: {
          localVideoOn: params.isVideoOn,
        },
        sessionIdleTimeoutMins: parseInt(params.sessionIdleTimeoutMins, 10),
      });

To Reproduce(If applicable)
Steps to reproduce the behavior:
I have just followed the sample repo and everything was working like 10 months ago. But no I had to make some changes in the app but now I am just getting error.

Screenshots
If applicable, add screenshots to help explain your problem.

Troubleshooting Routes
I have rechecked everything.

Smartphone (please complete the following information):

  • Android 13

Additional context
I am curious if it has to do something with zoom-sdk version. I am currently using 1.6.2. I am a little reluctant to use the latest version because my react-native version is not up-to date.

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