Questions tagged [csip-simple]

CSipSimple is a Voice over Internet Protocol (VoIP) application for Google Android operating system using the SIP

It is open source and free software released under the GNU General Public License.

It relies on, and uses features provided by, the pjsip SIP stack.

Key features:

  • Multi-codec support: Speex (narrow band, wideband), G.711 (u-law, a-law), GSM, iLBC, G.722, AMR (narrow band), iSAC.
    A plugin also allows to use SILK (narrow band, wideband, ultra wideband), CODEC2, G.726, G.722.1.
  • Multi-account support : up to 10 accounts can be activated at the same time.
  • Can use native audio driver
  • STUN and ICE NAT traversal
  • Integration with Android operating system with filters and rewriting rules
  • A distribution of the software available on the website allow SRTP, SIP over TLS and ZRTP
  • SIP-SIMPLE messaging
  • An API for third party applications is available

Source: Wikipedia (CSipSimple)

52 questions
15
votes
3 answers

Debugging native code in android under eclipse fails

I'm trying to debug the native code in the "csipsimple" android app using the Debug As->Android Native Application option. I used this tutorial to do it. I keep getting these errors: [2013-06-09 17:24:24 - SipHome] Unknown Application ABI:…
david-hoze
  • 1,045
  • 15
  • 31
8
votes
1 answer

Android. cSipSimple. How to integrate video-call into project?

I want to add sip calls to my quiz game. So, I've built SipHome project by this way: http://code.google.com/p/csipsimple/wiki/HowToBuild#Without_building_the_native_library It's Ok. Application compiled and launched. Now I want to add video-call…
valerybodak
  • 4,195
  • 2
  • 42
  • 53
7
votes
3 answers

Android SIP with CSipSimple and pjsip

I am writing a custom Android application that allows the user to make VOIP calls using SIP. When the user presses a button, a voice call is initiated with another SIP user. That's it. The only other requirements are that it has to work on 2.3+…
Joshua W
  • 4,973
  • 5
  • 24
  • 30
6
votes
0 answers

how to Add SIP contacts list and their online status in CSipSImple ?

I am learning to add one SIP contacts list on Csipsimple. and I am looking for how to get online status of contacts throug pjsip. In org.pjsip.pjsua.pjsipJNI.java, I read these lines. Could I use them to get someone's online status from SIP…
osimer pothe
  • 2,827
  • 14
  • 54
  • 92
6
votes
2 answers

CSipSimple throwing exception JNI DETECTED ERROR IN APPLICATION,input is not valid Modified UTF-8: illegal start byte 0x8e

CSipSimple throwing exception on android lollipop. JNI DETECTED ERROR IN APPLICATION,input is not valid Modified UTF-8: illegal start byte 0x8e while doing voip call, here i am sending message to ISipService in interval just to check call is going…
5
votes
1 answer

Error Building CSipSimple for Android

I am trying to build CSipSimple application for android. I followed all instructions in https://code.google.com/p/csipsimple/wiki/HowToBuild. I also installed all packages too, but I am getting following error while executing the 'make' command on…
Sino
  • 886
  • 7
  • 21
4
votes
1 answer

What will happen when my application swipe( killed) from list of recent applications?

My application is receiving calls(using CsipSimple) it's working fine, But my problem is when i am getting call, On that time, am killing the application from list of recent applications.calling notification also killing(Not showing). What will…
Nageswara Rao.CH
  • 241
  • 1
  • 2
  • 13
3
votes
1 answer

Getting fatal error: 'features.h' file not found #include while trying to generate .so files for pjsip android

I am using CSipSimple library for VoIP calling feature in my android app and recently my app was rejected on play store because the OpenSSL version with these libs was old. I need to update the .so PJSIP files according to the new/supported OpenSSL…
Priya Sindkar
  • 368
  • 3
  • 11
3
votes
2 answers

How to update OpenSSL version in CSipSimple?

I am using CSipSimple code for my application. But unfortunately, Google Playstore has raised a warning: You are using a vulnerable version of OpenSSL I want to update the OpenSSL version from existing code. Here is some reference which I have…
Asfak Saiyed
  • 303
  • 1
  • 14
3
votes
2 answers

CsipSimple on Galaxy SIII

I succesfully customized CSipSimple and built a SIP based app. I have tested the app on more than 10 devices. Every thing is fine. App doesn't run on Samsung Galaxy SIII. Sip doesn't get registered. It shows no error nothing is shown in Logcat. What…
Seshu Vinay
  • 13,560
  • 9
  • 60
  • 109
2
votes
0 answers

Hold/ Re-invite not working properly in conference call

I am working on conference call using pjsip and facing problem in hold/re-invite call. First of all, I am login with user "A" using my app and another user "B","C" are registered in another softphone. Now I call to user "B" and "C" from "A" and…
Himadri
  • 187
  • 2
  • 3
  • 13
2
votes
1 answer

You are using a vulnerable version of OpenSSL alert for CSipSimple

I have same issue with this link: How to update OpenSSL version in CSipSimple? I get an error when I try to "make" with latest openssl version. How can I find openssl for Csipsimple build? Which should I use the ndk version?Thank's
qwerty
  • 105
  • 1
  • 9
2
votes
1 answer

Android CSipSimple Build Fail for arm64-v8a

I'm getting an error on Galaxy S6 Edge+ where it says it can't load native library. I'm using CSipSimple. It compiles fine if i don't include the arm64-v8a in the Application.mk file. I'm gettings this error: [arm64-v8a] StaticLibrary :…
hadez30
  • 503
  • 5
  • 18
2
votes
1 answer

CSipSimple - java.lang.SecurityException : Permission Denial: not allowed to send broadcast android.intent.action.Phone_State

CSipSimple. Help Required. I'm trying to build a VoIP application that enables a user to call any device in the WLAN thrugh CSipSimple's local wizard. Here's the error I get on clicking the call button on Kitkat(4.4.2) CM 11.…
2
votes
1 answer

Error sending the INVITE with pjsip in Android: Error initializing media channel (PJ_EBUSY)

I need to develop my SIP client that uses standard SIP protocol but a custom protocol to handle the media. When I try to send the INVITE I receive an error message from the pjsip lib and the packet is not sent. The error is: Error initializing…
kingston
  • 11,053
  • 14
  • 62
  • 116
1
2 3 4