I'm using this library:
implementation 'com.mesibo.api:webrtc:1.0.5'
The problem is when I end the first videoconference and then call again - the opponent's video is not displayed in the surfaceViewRenderer
(and his voice is absent as well). Whereas the onAddStream
callback inside my PeerConnection.Observer
is fired sucessfully when the abonent accepts my new call.
Could you please help me:
Why my peer's MediaStream is not rendered in the
surfaceViewRenderer
?What are required steps to take on both peers' sides on ending call (besides
peerConnection.close()
) - e.g. what else to clear/close/dispose - in order to make everything ready for a new videocall?
Thank you in advance!