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!!
Asked
Active
Viewed 910 times
1
-
I can help you, but there isn't enough space to explain – hosein moradi Sep 15 '20 at 09:21
1 Answers
0
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:
but you will pay for these
By the way webrtc in Android is a nightmare because of the lake of resources, so good luck.

Mohammad Elsayed
- 1,885
- 1
- 20
- 46
-
@Mohammed, thanks for your response, is there any resource for implementing android client with any free open source server – Rinor Sep 14 '20 at 23:11
-
https://jitsi.github.io/handbook/docs/dev-guide/dev-guide-android-sdk – Mohammad Elsayed Sep 15 '20 at 18:01
-
https://github.com/EnableX/One-to-One-Video-Call-Webrtc-Application-Sample-for-Android – Mohammad Elsayed Sep 15 '20 at 18:02
-