This is a bridge for ZoomUS SDK:
Tested on XCode 12.2 and react-native 0.63.3. (See details)
Pull requests are welcome.
$ npm install react-native-zoom-us
If you have react-native < 0.60
, check Full Linking Guide
- Add repository to
android/build.gradle
:
allprojects {
repositories {
flatDir {
dirs "$rootDir/../node_modules/react-native-zoom-us/android/libs"
}
}
}
- Set
minSdkVersion
to21
buildscript {
ext {
minSdkVersion = 21
}
}
See diff for reference.
- Make sure you have appropriate description in
Info.plist
:
<key>NSBluetoothPeripheralUsageDescription</key>
<string>We will use your Bluetooth to access your Bluetooth headphones.</string>
<key>NSCameraUsageDescription</key>
<string>For people to see you during meetings, we need access to your camera.</string>
<key>NSMicrophoneUsageDescription</key>
<string>For people to hear you during meetings, we need access to your microphone.</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>For people to share, we need access to your photos.</string>
-
Update pods using
cd ios/ && pod install && cd ..
-
Make sure to set
ENABLE_BITCODE = NO;
for both Debug and Release because bitcode is not supported by Zoom iOS SDK
import ZoomUs from 'react-native-zoom-us';
// initialize minimal
await ZoomUs.initialize({
clientKey: '...',
clientSecret: '...',
})
// initialize with extra config
await ZoomUs.initialize({
clientKey: '...',
clientSecret: '...',
domain: 'zoom.us'
}, {
disableShowVideoPreviewWhenJoinMeeting: true
})
// Start Meeting
await ZoomUs.startMeeting({
userName: 'Johny',
meetingNumber: '12345678',
userId: 'our-identifier',
zoomAccessToken: zak,
userType: 2, // optional
})
// Join Meeting
await ZoomUs.joinMeeting({
userName: 'Johny',
meetingNumber: '12345678',
})
// Join Meeting with extra params
await ZoomUs.joinMeeting({
userName: 'Johny',
meetingNumber: '12345678',
password: '1234',
participantID: 'our-unique-id',
noAudio: true,
noVideo: true,
})
The plugin has been tested for joinMeeting
using [smoke test procedure]https://github.com/mieszko4/react-native-zoom-us-test#smoke-test-procedure:
- react-native-zoom-us: 5.3.0
- react-native: 0.63.3
- node: 12.6.3
- macOS: 10.15.5
- XCode: 12.2
- android minSdkVersion: 21
You have to eject your expo project to use this library.