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
1
vote
1 answer

java.lang.VerifyError for AIDL Service

I'm working on getting an app communicating with an external service in another application (called CSipSimple). I'm able to bind to the service: ServiceConnection mConnection = new ServiceConnection(){ @Override public void…
jpalm
  • 2,297
  • 1
  • 21
  • 27
1
vote
3 answers

Custom UI not working

I am trying to reuse csipsimple as a library. and calling ui which is present in the same library My xml file looks like
Rohit
  • 1,001
  • 1
  • 11
  • 20
0
votes
1 answer

CSipSimple pjsip log callback

I'm using CSipSimple for android and trying to set log callback to receive pjsip library log messages. In log configuration there is a function setCb but I don't understand how declare callback and use it. pjsua_logging_config logCfg = new…
Sergey L
  • 11
  • 1
  • 4
0
votes
1 answer

Codec priority not change when I make SIP Call then showing old codec in Freeswitch call logs

I am using Pjsip Library for the call and as I am changing codec from my code and its getting change with the new priority but it not updating in FreeSWITCH call logs as it showing me older codec. Not updating with new priority codec. For suppose i…
Jyoti
  • 87
  • 3
  • 12
0
votes
1 answer

Facing the issue of native libraries when compiling project in Android N

I am using the project CSipSimple as a reference in my current project. Project works fine until i have not tested it in the Android N. I am getting strange errors when m running my project in Android N. I have done some googling for that and came…
AndroidLearner
  • 4,500
  • 4
  • 31
  • 62
0
votes
1 answer

Can't build CSipSimple

I'm trying to build CSipSimple I get such error: # External sources fetched out from external repos/zip /Users/Nikita.Leshchev/Library/Android/sdk/ndk-bundle/build/core/build-local.mk:151: *** Android NDK: Aborting . …
Nikita Leshchev
  • 1,784
  • 2
  • 14
  • 26
0
votes
1 answer

CSipSimple libvpx patching file error

I'm trying to compile CSipSimple according to https://sourceforge.net/p/csipsimple/wiki/HowToBuild/ and got this error fatal: repository 'https://code.google.com/p/webm.libvpx/' not found So, I manually download the source code from…
AhmadF
  • 143
  • 10
0
votes
0 answers

java.lang.UnsatisfiedLinkError: Native method not found: org.pjsip.pjsua.pjsuaJNI.new_pjsua_buddy_config:()J

I am working in CSipSimple . When I try to addBuddy , the following code is executed . public int addBuddy(String buddyUri) throws SameThreadException { created = true ; if (!created) { return -1; } …
osimer pothe
  • 2,827
  • 14
  • 54
  • 92
0
votes
2 answers

What to do to allow conference calls in csipsimple in Android

I want to add a feature named "conference call" in CSipSimple. I have written the following code : dispatchTriggerEvent(IOnCallActionTrigger.ADD_CALL); It calls the following method : private void dispatchTriggerEvent(int whichHandle) { …
osimer pothe
  • 2,827
  • 14
  • 54
  • 92
0
votes
0 answers

Not able to bind service in activity

I am binding service from SherlockFragment and binding service in it but connection is not establishing. private ServiceConnection connection = new ServiceConnection() { @Override public void onServiceConnected(ComponentName arg0,…
Rushika Patel
  • 95
  • 1
  • 8
0
votes
1 answer

Error while building cSipSimple source

I am trying to build the cSipSimple source for android. I think ,I am followed the steps described in how to build wiki page of cSipSimple. But unfortunately I am facing a make error. Here is the command log info. Now at patch…
Alex Chengalan
  • 8,211
  • 4
  • 42
  • 56
0
votes
1 answer

calls are made but no voice transferred to either sip client using asterisk and csipsimple

I am using csipsimple as sip client and asterisk server to set up call. Calls are made between 2 sip clients but voice is not getting transferred. Calls are made between 2 sip clients using AMI. I can give my asterisk cli log. Can anybody please…
Hitendra
  • 3,218
  • 7
  • 45
  • 74
0
votes
1 answer

trouble with adding Spinner in CSipSimple

I'm trying to add spinner in my CSipSimple account registration form. but i'm having error at few lines. first i'm having error at accountUserName = (Spinner) findViewById("username"); findViewById is undefined. Second is at ArrayAdapter…
Yasir
  • 11
  • 3
0
votes
1 answer

unable to make call in KitKat

I am working on csipsimple version 1915. It work fine for android devices below 4.4.2 . To call somebody in local network I have this method private void broadCastAndroidCallState(String state, String number) { //Android normalized event …
code_geek
  • 163
  • 2
  • 11
0
votes
1 answer

How to add custom header while making a pjsip makecall()?

I need to add one custom header for before making a sip call. please help me. Thanks in advance.
Manikanta Ottiprolu
  • 751
  • 1
  • 7
  • 23