Android WebRTC with PeerConnection

1k Views Asked by At

I need to create an app for android with Java for voice call, the data which are provided to me are: iceServer: ["stun:stun.l.google.com:19302"], channelName and EventName. Are they enough to build an application for voice calls or even needed something for signaling? Thank you!!

1

There are 1 best solutions below

4
On

Yes you need of course a Signalling server, you can find many good free open source servers in the Codelab, but if you really want to go for production I recommend hiring a backend developer who has experience with webrtc. I also recommend to check for Socket.io to firing and catching events.

There is another option for Signaling, which is renting, take this for example:

https://www.ably.io/

https://www.simplewebrtc.com/

but you will pay for these

By the way webrtc in Android is a nightmare because of the lake of resources, so good luck.