Setting the file. One moment.
Skill 142 · Zoom Video SDK Flutter
Subchapter 142.9
examples/setup-guide.mdMarkdown2 KBView on GitHub
# install location example
git clone https://github.com/flutter/flutter.git -b stable --depth 1 C:\users\dreamtcs\tools\flutter
# verify
C:\users\dreamtcs\tools\flutter\bin\flutter.bat --version
C:\users\dreamtcs\tools\flutter\bin\flutter.bat doctor -vIf Flutter is not on PATH in your shell, use the full flutter.bat path for all commands.
dependencies:
flutter_zoom_videosdk: ^<version>flutter pub getfinal zoom = ZoomVideoSdk();
await zoom.initSdk(InitConfig(
domain: 'zoom.us',
enableLog: true,
));If init fails without a clear error string, wrap initSdk with PlatformException handling and surface code/message/details in UI logs.
minSdk to at least 28 in the app module.ZoomVideoSDKDelegate not found, add the Zoom Android artifacts in the app module dependencies:dependencies {
implementation("us.zoom.videosdk:zoomvideosdk-core:2.3.10")
implementation("us.zoom.videosdk:zoomvideosdk-videoeffects:2.3.10")
implementation("us.zoom.videosdk:zoomvideosdk-annotation:2.3.10")
implementation("us.zoom.videosdk:zoomvideosdk-whiteboard:2.3.10")
implementation("us.zoom.videosdk:zoomvideosdk-broadcast-streaming:2.3.10")
}When emulator startup is unstable, run on a real phone:
# pairing (from Wireless debugging)
adb pair <ip:pair-port> <pair-code>
# connect (from mDNS connect port)
adb connect <ip:connect-port>
adb devices -lThen run the app:
flutter run -d <device-id> --debug --no-resident