The onShareClicked() callback is never triggered. I’ve tried clicking the Share icon, but it doesn't perform any action

I am using Zoom’s UiToolKit in my Kotlin-based Android app built with Jetpack Compose to handle Zoom calls.

After launching the UiToolkitView, I can see the Audio, Video, Share, Users, and More icons on the UI. All icons are clickable and functional, except the Share icon. When I click the Share icon, nothing happens — the associated callback does not seem to trigger.

Dependency

implementation 'us.zoom.uitoolkit:uitoolkit:2.1.10-1'

UiToolKit Listener Setup

val listener = object : UiToolkitView.Listener {
    override fun onViewStarted() {
        Log.d("ZoomCallHelper", "onViewStarted")
        onViewStarted.call(Unit)
    }

    override fun onViewStopped() {
        Log.d("ZoomCallHelper", "onViewStopped")
        onViewStopped.call(Unit)
    }

    override fun onError(error: UiToolkitError) {
        Log.d("ZoomCallHelper", "onError: $error")
    }

    override fun onShareClicked() {
        // This method never gets triggered
        Log.d("ZoomCallHelper", "onShareClicked")
        onShareClicked.call(Unit)
    }

    override fun onShareEnded() {
        Log.d("ZoomCallHelper", "onShareEnded")
        onShareEnded.call(Unit)
    }
}

UiToolKit Initialization and Listener Attachment

val uiToolkitView = UiToolkitView(context)

LaunchedEffect(Unit) {
    uiToolkitView.joinSession(sessionContext)
    uiToolkitView.addListener(zoomCallHelper.listener)
}

Issue

The onShareClicked() callback in the UiToolkitView.Listener is never invoked, even though the Share icon is visible and clickable in the UI. No logs are printed, and no further action is triggered.

Is this a known issue with the 2.1.10-1 version of the Zoom UiToolKit, or is there an additional step required to enable the Share functionality?

Hi @DineshSarma I can help take a look into this. I’ll test this on my side and respond shortly with an update.

1 Like

Hello @ticorrian.heard hope you are doing well. I am following up on this issue, any updates?

Hi @DineshSarma Sorry for the wait. I will test this today and reach out to our uitoolkit team.

Hi @DineshSarma I was able to reproduce both issues youre seeing. I put in a jira to our engineering team with the info you sent over. It seems this is an internal issue that needs to be addressed. Here is the reference number: ZSEE-173579

2 Likes