You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am integrating zoom into react native application. App is getting crash when I try to join or start a meeting. Below are versions used react native- 0.74.3 react-native-zoom-us- 8.0.1
ZoomUs.initialize() is working correctly and I get the success response. ZoomUs.startMeeting() or ZoomUs.joinMeeting() crashes the app.
Required jwtToken and zoomAccessToken are created from ApiKey and SecretKey
When I click on Join button, app get crashed without any logs. I tried with latest version of react-native-zoom-us. Added required permissions given in official documentation of react-native-zoom-us.
The text was updated successfully, but these errors were encountered:
I am integrating zoom into react native application. App is getting crash when I try to join or start a meeting. Below are versions used react native- 0.74.3 react-native-zoom-us- 8.0.1
ZoomUs.initialize() is working correctly and I get the success response. ZoomUs.startMeeting() or ZoomUs.joinMeeting() crashes the app.
Required jwtToken and zoomAccessToken are created from ApiKey and SecretKey
useEffect(()=>{
async function fetchData() {
console.log("inside fetch dataa")
try {
await ZoomUs.initialize({
jwtToken: token,
domain: 'zoom.us',
// appKey: 'FW59TFeBQ02VOpMtwlqaRg',
// appSecret: 'KuVIOqnCYamiURJAJiZoYEOGLDQY1SOo',
},
{
disableShowVideoPreviewWhenJoinMeeting: true,
enableCustomizedMeetingUI: true,
}).then(async(res)=>{
console.log("Zoom SDK initialization..............",res)
}).catch((err)=>{
console.log("Zoom SDK initialization error.............",err)
});
} catch (error) {
console.error('Zoom SDK initialization failed: ', error);
}
}
fetchData();
},[])
const joinMeet = () => {
try {
const meetingOptions = {
meetingNumber: '1234567890',
userName: 'Test user',
zoomAccessToken: zak,
};
When I click on Join button, app get crashed without any logs. I tried with latest version of react-native-zoom-us. Added required permissions given in official documentation of react-native-zoom-us.
The text was updated successfully, but these errors were encountered: