Home:ALL Converter>Iplementing Jain SIP in Android

Iplementing Jain SIP in Android

Ask Time:2013-08-15T10:59:56         Author:Gangnaminmo Ako

Json Formatter

I'm trying to make an android app using Jain SIP. I already read the basic tutorial for SIP and now I'm looking for a tutorial how to implement jain sip in android. I search but I didn't saw anything how to implement it on android. So I'm asking to anyone who knows a link of tutorial how to implement jain sip in android, just a simple example how to use it on androidh.

Any thoughts will be highly appreaciated.

Author:Gangnaminmo Ako,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/18245668/iplementing-jain-sip-in-android
Ivelin Ivanov :

The stock native android sip stack is built on top of JAIN SIP but it does not have all functionality, there is no support for IM, presence and video calls right now. Google forked SIP Stack and never really updated the SIP API that is shipped by default and used the same package names as the original JAIN SIP project. This proved to be a major hassle to developers that wanted to add SIP capabilities worldwide as they couldn’t use JAIN SIP out of the box.\n\nAn opensource implementation of the Android JAIN SIP stack can be found here:\nhttps://code.google.com/p/jain-sip/\n\nIt is a java based SIP stack which allows you to integrate the sip stack seamlessly in your android application without the hassle of NDK.\n\nA Complete SIP Stack\nJAIN SIP is a full implementation of the RFC 3261 Specification and as well as support for several SIP RFCs.\n\nWhat is the issue using the existing JAIN SIP stack?\n\nIf you have tried to use the existing JAIN SIP in any android application you might have run into package name conflicts, these conflicts are resolved now and the stack is ready to be used in android.\n\nThe full blog post with example code and Android APK is available here:\nhttp://www.telestax.com/jain-sip-stack-for-android/",
2014-10-08T00:43:42
yy