Change the minimum Android SDK version to at the minimum 21 in your android/app/build.gradle file.
minSdkVersion 21
Add two rows to the ios/Runner/Info.plist:
- one with the key Privacy - Camera Usage Description and a usage description.
- and one with the key Privacy - Microphone Usage Description and a usage description.
Or in text format add the key:
<key>NSCameraUsageDescription</key>
<string>Need to use the camera for call</string>
<key>NSMicrophoneUsageDescription</key>
<string>Need to use the microphone for call</string>
- Android:
v5.2.41727.0928
- iOS:
v5.2.41739.1022
SDK Android: zoom/zoom-sdk-android
curl https://github.com/zoom/zoom-sdk-android/archive/master.zip
unzip zoom-sdk-android-master.zip
cp zoom-sdk-android-master/mobilertc-android-studio/commonlib/commonlib.aar android/libs/commonlib/
cp zoom-sdk-android-master/mobilertc-android-studio/mobilertc/mobilertc.aar android/libs/mobilertc/
SDK iOS: zoom/zoom-sdk-ios
curl https://github.com/zoom/zoom-sdk-ios/archive/master.zip
unzip zoom-sdk-ios-master.zip
cp zoom-sdk-ios-master/lib/MobileRTC.framework ios/
cp zoom-sdk-ios-master/lib/MobileRTCResources.bundle ios/
cp zoom-sdk-ios-master/lib/MobileRTCScreenShare.framework ios/