zoom_meeting_flutter_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 (mobilertc.aar) for android : https://www.dropbox.com/scl/fi/krasgg3f82pru38wbsb3o/mobilertc.aar?rlkey=mpq34pxe2ipjikks34mapytd6&st=txhipze8&dl=0put it as
/Users/YourName/.pub-cache/hosted/pub.dev/zoom_meeting_flutter_sdk<PackageVersion>/android/mobilertc/mobilertc.aar
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
after pod install is complete open xcode and make sure MobileRTC.xcframework
is added in TARGETS/Runner/Frameworks,Libraries, and Embedded Content

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

and last, re-sign the sdk using command
codesign --force --deep --sign "Apple Development: ... (...)" MobileRTC.xcframework
for more info ios docs
reference example/ios
Usage
import 'package:zoom_native_sdk/zoom_native_sdk.dart';
final _zoomNativelyPlugin = ZoomMeetingFlutterSdk();
isInitialized = (await _zoomNativelyPlugin.initZoom(
jwtToken: "",
)) ??
false;
await _zoomNativelyPlugin.joinMeting(
meetingNumber: "",
meetingPassword: "",
);
Call Structure
open with drawio vscode plugin
structureChart.drawio
About Develpment
Develop & Maintain by Justin26l @ SimIT Group
forked from Al7osam company's zoom_native_sdk