I want to integrate live streaming like(One host to many viewers) on my android app using webrtc android sdk but I can't get a full code to help in getting this done.
During my research I found the snippet code below, I didn't know where to start. Any link to the full implementation or the full code will be highly appreciated. Thanks
implementation 'com.github.webrtc-sdk:android:104.5112.05'
PeerConnection.IceServer.Builder iceServerBuilder = PeerConnection.IceServer.builder("turn:hostname:1234?transport=tcp");
iceServerBuilder.setTlsCertPolicy(PeerConnection.TlsCertPolicy.TLS_CERT_POLICY_INSECURE_NO_CHECK);
iceServerBuilder.setUsername("test");
iceServerBuilder.setPassword("passord");
PeerConnection.IceServer peerIceServer = iceServerBuilder.createIceServer();
I am expecting a full guide to the implementation of the webrtc android sdk