nagarro-dv / react-native-zoom-us-bridge

React Native bridge for Zoom SDK for iOS + Android
MIT License
45 stars 23 forks source link

Unable to join video enabled meeting on iOS[BUG] #24

Open Maddybarak opened 4 years ago

Maddybarak commented 4 years ago

I have added this SDK and work almost fine for android. I am facing issue on my iOS app that is: when i am trying to join meeting that i have started through my system (video enabled) It keeps on trying to join meeting and the process never ends and it stuck on loading screen.

Here is the code that i am using. It is taken from your sample: ` joinMeeting = async () => { const {meetingId, userName, meetingPassword} = this.state;

if (!meetingId || !userName || !meetingPassword) return false;

RNZoomUsBridge.joinMeeting(String(meetingId), userName, meetingPassword)
  .then((val)=>{
    console.log(val)
  })
  .catch((err) => {
    console.warn(err);
    Alert.alert('error!', err.message);
  });

};`

React Native version:

react-native-cli: 2.0.1 react-native: 0.63.2

Steps To Reproduce

Provide a detailed list of steps that reproduce the issue.

  1. Start zoom meeting through mac/window video enabled
  2. Run app on iOS physical device
  3. Input Meeting ID, Password, username 4 Click on join meeting

Note: I am able to run the sample on android device, facing issue only for iOS version.

matthewtangcode commented 4 years ago

I am having the same issue. When meeting's set as video enabled, ios pops 'permission for camera' alert, after pressing 'allow', then it keeps spinning 'loading'...