Last updated:
0 purchases
zoom native sdk
zoom_native_sdk #
this version is initial join zoom meeting using native sdk for android and ios
you need to drag and drop zoom ios meeting sdk manually to your application
Platform Setup #
In order to work correctly there needs to be some platform specific setup. Check below on how to add support for Android and iOS
Android
download zoom sdk for android by running this command in terminal
dart run zoom_native_sdk:download
copied to clipboard
iOS
in first you need to login to your zoom account then select your project and download ios sdk.
after download is complete unzip file and copy two file :-
MobileRTC.xcframework
MobileRTCResources.bundle
and past in IOS module
then open ios in Xcode and click right to Runner folder and add two file to it
MobileRTC.xcframework
MobileRTCResources.bundle
will be shown as this image below
after adding this files running pod install to get pods for zoom in ios
by click right to ios folder and select onpen in terminal
pod install
copied to clipboard
after pod install is complete open xcode and make sure MobileRTC.xcframework
is added in TARGETS/Runner/Frameworks,Libraries, and Embedded Content
and finally in xcode go to Pods/TARGETS/zoom_native_sdk/Frameworks and Libraries
and add MobileRTC.xcframework to it and make sure it Do Not Embed as shown
for more info
ios docs
Usage #
import 'package:zoom_native_sdk/zoom_native_sdk.dart';
copied to clipboard
final _zoomNativelyPlugin = ZoomNativeSdk();
copied to clipboard
isInitialized = (await _zoomNativelyPlugin.initZoom(
appKey: "",
appSecret: "",
)) ??
false;
copied to clipboard
await _zoomNativelyPlugin.joinMeting(
meetingNumber: "",
meetingPassword: "",
);
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.