zoom_meeting_flutter_sdk 0.3.7 copy "zoom_meeting_flutter_sdk: ^0.3.7" to clipboard
zoom_meeting_flutter_sdk: ^0.3.7 copied to clipboard

Another plugin to join zoom meeting using native android and ios zoom sdk you need to darg and drop zoom ios meeting sdk manually to your application

zoom_meeting_flutter_sdk #

Pub likes popularity pub points codecov

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_meeting_flutter_sdk:download

thin command will download mobilertc.aar into package directory
"/Users/justin/.pub-cache/hosted/pub.dev/zoom_meeting_flutter_sdk/android/mobilertc/"

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 forked from Al7osam company's zoom_native_sdk

0
likes
150
points
263
downloads

Publisher

unverified uploader

Weekly Downloads

Another plugin to join zoom meeting using native android and ios zoom sdk you need to darg and drop zoom ios meeting sdk manually to your application

Repository (GitHub)

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on zoom_meeting_flutter_sdk