This repository has been archived by the owner on May 10, 2024. It is now read-only.
Releases: fishjam-dev/membrane-webrtc-android
Releases · fishjam-dev/membrane-webrtc-android
Release 5.2.0
Release 5.1.2
- Handle empty events metadata
- Fix ktlint
Release 5.1.1
Release 5.1.0
Release 5.0.0
This release adds compatibility with RTCEngine v0.14.
Because of that, there are breaking changes:
connect
has been renamed tocreate
and no longer connects to the server, just createsMembraneRTC
instance. Now the user is responsible for managing the socket connection. We provided a convenience wrapper for that. See the example on how to use it.- MembraneRTC no longer deals with Peers, but with Endpoints. That means the
join
method has been renamed toconnect
and all methods and callbacks names containingPeer
s were renamed to containEndpoint
s - Now you create tracks after receiving
onConnected
callback, just like in web client (see our example)