Hi Zoom Devs,
I’m integrating the Android Zoom Meeting SDK (version 6.6.9.35200) into a Flutter app with a native Kotlin plugin. The SDK fails to initialize with this error:
onZoomSDKInitializeResult
errorCode = 1
internalErrorCode = 0
I’m passing a JWT token to the SDK because the documentation says to use JWT for initialization:
Kotlin native code
val params = ZoomSDKInitParams().apply {
this.jwtToken = jwtToken
this.domain = "zoom.us"
this.enableLog = true
}
zoomSDK.initialize(context, listener, params)
Everything compiles fine, but the SDK fails with:
ZOOM_INIT_FAILED - error=1 internal=0
’ve verified that:
-
The SDK version is 6.6.9
-
I’m passing a string token
-
I’m testing on a real Android device
-
The domain is “zoom.us” (default)