java.lang.UnsatisfiedLinkError has been throwed When initialize ZoomSDK

Hey @goyal.arun16,

Are you setting the userEmail?

“In your index.js file and within the join method you will need to set make sure the userEmail property is set.”

Also confirming, you have the role set to 0 in your meetConfig object?

Thanks,
Tommy

Hi Arun,

Thanks for the reply and glad to hear that everything is working now. For Web SDK related questions, you may make a post here for further assistance:https://devforum.zoom.us/c/javascript-api-development.

Happy Zooming!:slight_smile:
Thanks!

1 Like

Hi Tommy , thanks for replying

We are setting both options correctly but still not working

Hi Carson, I’ll use app bundle for google play store thats fine. But I want to push the APK on Samsung store as well so is there any solution to reduce the size.

Thanks
Arun

Hey @goyal.arun16,

Can you repost your JS Web SDK question on the JavaScript API Category so we can better assist?

Thanks,
Tommy

Hi Arun,

Adding the abiFilters is the only way to reduce the size as I have mentioned above: App size estimate

You should be able to upload the app to either Google Play Store or the Samsung Galaxy Store since there are no any restrictions found for the apk size in Galaxy Store:https://developer.samsung.com/galaxy/distribute/distribution-guide

Thanks!

Hi Carson, when host ends the meeting a dialog is shown on attendee (user) with counter . Attached is the screenshot .

Can we have control that dialog if we don’t want that or can we customise ?

Hi Arun,

Thanks for the reply. That’s an Android’s system dialog and it is not customizable.

Thanks!

Hi Carson, one quick question can we show custom title instead of meeting id or webinar id in zoom page. If yes please let me know.

Hi Arun,

Yes you can.

There is an option called custom_meeting_id in MeetingOption(https://zoom.github.io/zoom-sdk-android/us/zoom/sdk/MeetingOptions.html#custom_meeting_id), you can put values in that field to change the meeting title.

Hope this helps. Thanks!

1 Like

Thanks Carson its working.
Some times volume in zoom SDK is very low , so is there is any provision to increase volume.

Let me know if there is any setting for this.

Hi Arun,

Thanks for the reply. Could you provide more information on this(volume low issue)? We do not have any interface for adjusting volume programmatically at the moment. You may refer to this:https://stackoverflow.com/questions/32926873/adjusting-audiomanager-volume-level-android and adjust the volume at system level.

Thanks!

Carson is there any way to remove this dialog and is there any callback to handle this or before this!
Screenshot_20190809-131227|281x500

This is looking bad for user

Carson one more thing I want to know if there any setting so that we can enable chat option to all the attendees, right now I am able to chat with panellist.

Thanks

Hi Arun,

You can hide this dialog by setting the no_meeting_end_message property in MeetingOptions to be True.

There are no callbacks to handle this or before this, but there is a callback to handle the case after this. You may use the callback onMeetingLeaveComplete (https://zoom.github.io/zoom-sdk-android/us/zoom/sdk/InMeetingServiceListener.html#onMeetingLeaveComplete-long- ) to capture this event. The callback includes a parameter ret , which is the end meeting reasons defined in MeetingEndReason (https://zoom.github.io/zoom-sdk-android/us/zoom/sdk/MeetingEndReason.html#END_BY_HOST), in this MeetingEndReason , there is a reason for the “End meeting for all by host”.

Hope this helps. Thanks!

1 Like

Yes, you can use sendChatToGroup (https://zoom.github.io/zoom-sdk-android/us/zoom/sdk/InMeetingChatController.html#sendChatToGroup-us.zoom.sdk.InMeetingChatController.MobileRTCChatGroup-java.lang.String-), and passing the MobileRTCChatGroup_All (https://zoom.github.io/zoom-sdk-android/us/zoom/sdk/InMeetingChatController.MobileRTCChatGroup.html#MobileRTCChatGroup_All) as the parameter.

Hope this helps. Thanks

1 Like

Thanks Carson , its working fine . so is there any way to pause zoom when goes to background and remove notification, sometimes app get killed but notification still shows and its user is not able to remove this notification.

Hi Arun,

Thanks for the reply. Which SDK version are you using? This issue has been fixed in this version: https://github.com/zoom/zoom-sdk-android/releases/tag/v4.4.55968.0904, please have a try.

Thanks!

Carson I am using one of the latest version of SDK build on Android X with 64 bit support but this problem is still here. Plz let me know how can we resolve this issue and is there any demo code so that I can integrate zoom within a fragment instead of activity.

Thanks

Hi,

When I am using our demo app in https://github.com/zoom/zoom-sdk-android/releases/tag/v4.4.55968.0904 to reproduce this issue with the following steps:

  1. Start a meeting and the notification shows up in the header bar
  2. Press the home button and the app goes into the background
  3. Press the “Recent Activity” button, and close the app

Observation: The notification disappears as the app is closed.

So if you would like to clear the notification when the SDK app is killed, it should be taken care of automatically. Could you have a try with our demo app and see if it still exists?

Thanks!

1 Like