0

Hi I'm not very good with coding but I'm trying to learn as much as I can. I've been looking for tutorials on how to create an internet call app on android studio. So far I haven't found any. If anyone knows a process that could guide me I would very much appreciate it.

Chenlong
  • 29
  • 1
  • 2
  • Possible duplicate of [VoIP library for Android](http://stackoverflow.com/questions/13511372/voip-library-for-android) – skydroid Aug 22 '16 at 05:54

1 Answers1

1

You can use android's own implementation

Session Initiation Protocol

from docs

Android provides an API that supports the Session Initiation Protocol (SIP). This lets you add SIP-based internet telephony features to your applications. Android includes a full SIP protocol stack and integrated call management services that let applications easily set up outgoing and incoming voice calls, without having to manage sessions, transport-level communication, or audio record or playback directly.

or other third-party libraries like following.

1.Pjsip
2.Mjsip
3.doubango
4.belle-sip

Hope it helps..

P.S taken from this answer

refer this also..

Happy Coding :)

Community
  • 1
  • 1
skydroid
  • 733
  • 6
  • 16