ZoomVideoSDK Integration - java.lang.UnsatisfiedLinkError

Hi Arun, this looks like an issue similiar to this thread, have you:

  1. Included the SDK as described in the documentation?

  2. Added the proguard-rules to your project’s gradle build file?

Here’s the snippet you’d need:

-keep class us.zoom**{
   *;
}
-keep interface us.zoom**{
   *;
}

-keep class org.webrtc**{
   *;
}

-keep class com.zipow**{
   *;
}