Joining A Meeting

Description
Joining a meeting giving error

I have initialized the SDK and the meeting options and params properly.
When i try to join the meeting it goes to zoom preparing meeting screen and comes back with following error:

Access denied finding property “vendor.camera.aux.packagelist”

Also the response code received is 0

Following is the code snippet;

opts = new JoinMeetingOptions();
// some available options
opts.no_driving_mode = true;
opts.no_invite = true;
opts.no_meeting_end_message = false;
opts.no_titlebar = false;
opts.no_bottom_toolbar = false;
opts.no_dial_in_via_phone = true;
opts.no_dial_out_to_phone = true;
opts.no_disconnect_audio = false;
opts.no_share = true;
opts.invite_options = InviteOptions.INVITE_VIA_EMAIL + InviteOptions.INVITE_VIA_SMS;
opts.no_audio = true;
opts.no_video = true;
opts.meeting_views_options = MeetingViewsOptions.NO_BUTTON_SHARE;
opts.no_meeting_error_message = true;
opts.participant_id = “participant id”;

    params = new JoinMeetingParams();

    params.displayName = userName;
    params.meetingNo = meetingID;
    params.password = password;

    meetingService = zoomSDK.getMeetingService();
    if(meetingService != null){
        Toast.makeText(getActivity(),"Meeting Service Created Successfully",Toast.LENGTH_SHORT).show();
        int response = meetingService.joinMeetingWithParams(getActivity(), params, opts);
        Toast.makeText(getActivity(),"Response " + response,Toast.LENGTH_SHORT).show();
    }

Initialization:

initParams = new ZoomSDKInitParams();
initParams.appKey = ZOOM_SDK_KEY;
initParams.appSecret = ZOOM_SECRET_KEY;
initParams.enableLog = true;
initParams.domain = WEB_DOMAIN;

zoomSDK= ZoomSDK.getInstance();
zoomSDK.initialize(getActivity(), zoomSDKInitializeListener, initParams);

Looking forward to hear from you.

Hi @abbasfelectricwala,

Thanks for using Zoom SDK. What is the SDK version you are using? And are you providing permission to allow SDK to access camera and mic?

Thanks!