First noticed this with SDK v5.5.1.1317 and it is also present in v5.5.1.1319.
I’m using a custom UI. When the remote host ends the meeting, I’m seeing an OK dialog popup that says “This meeting has been ended by the host” and it counts down from 5 to 0 and then dismisses itself. This is not my dialog and it must be coming from the SDK. I would not expect the SDK to be producing dialogs when a custom UI is requested. This is not causing any major issues other than duplicating the message I am already showing to the user in my customized UI.
You can see this happen in the SDK sample app, if you comment out the following lines in MyMeetingActivity.java:
@Override
public void onMeetingLeaveComplete(long ret) {
meetingShareHelper.stopShare();
//if (!mMeetingFailed)
// finish();
}