2

I am trying to build an Android VOIP client application for a voip server and planning to use Restcomm android sdk. But according to their getting started guide they specify Restcomm Communications Platform as a prerequisite . So I am confused whether it works for the kind of SIP/VOIP server I am trying to make the app for. Does anyone have any idea about it? I tried to mail them but they redirected me to SO. So it would be great if someone who have used this SDK suggest me.

Abhisek Lamsal
  • 473
  • 1
  • 5
  • 16

1 Answers1

2

The Restcomm Android SDK is build on top of JAIN SIP, which means that in its core it is a SIP client, so it should be able to talk to any SIP server. The only thing you need to keep in mind is that it uses webrtc for media, in order to better traverse NAT and generally take advantage of all the goodies webrtc has to offer.

Please let me know if you have any further questions

Best regards, Antonis Tsakiridis

atsakiridis
  • 1,002
  • 5
  • 19
  • does it mean that I can use it directly for any SIP servers, I mean without modifying any lower level APIs and codes? – Abhisek Lamsal Jul 04 '16 at 15:36
  • Right, you should be able to do that for any SIP server, as long as you remember the media part that I described above. – atsakiridis Jul 04 '16 at 17:10
  • 1
    Please note that for the Media Part, if your VoIP Server doesn't support WebRTC standards, you could potentially use Restcomm-Connect as a WebRTC gateway connect to your VoIP Server without any issues – jeand Jul 05 '16 at 07:13