Android show mini-meeting when minimise app

Description
I need to show mini-meeting window when used minimise app. I add ShowMiniMeetingWindow() call on OnPause() method of Application, but OnPause() also calls when I tap on “Share Screen” button: system popup shown, OnPause() calls, and meeting minimized, although I don’t want it. How can I fix it?

Which Android Meeting SDK version?
5.13.5

To Reproduce(If applicable)
Steps to reproduce the behavior:

  1. Add ShowMiniMeetingWindow() to OnPause()
  2. Try to start screen sharing

Actual Behaviour: System popup shown → OnPause call → Meeting minimized

Hi @sleushunou ,

Thanks for posting on our developer forum, The function showMiniMeetingWindow() is not suitable to be added in onPause. If you you like to minimize the App when the app is in the background, implementing PIP mode will be more suitable for this situation. Or adding showMiniMeetingWindow() in onBackPressed may be similar to your use case too.
Thank you

Elaine

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.