1

I am using PjSIP for SIP calling. I have integrated PjSIP project as per the instruction on https://code.google.com/p/siphon/wiki/Compilation & How To Build and Compile PJSIP for Xcode, Using sample code IPJSUA to test?.

But when I opened the project, I found so many library with .a extensions are missing. Please find the screenshot for the same.

Is there anything which is missed by me or do I need to make changes or update anything ?

Also, let me know if any other library available for SIP calling.

enter image description here

  • Thanks in Advance. Aakil.
Community
  • 1
  • 1
Aakil Ladhani
  • 984
  • 9
  • 32

1 Answers1

1

It shows that library files are missing for compiling the project. Either you wrongly build your Project or you had changed the path of the library file into another place it doesn't know to access the library files.

To Build Your PJSIP project, Follow the below link to build for iphone:

Source: https://trac.pjsip.org/repos/wiki/Getting-Started/iPhone

To Add the missed library files into your project, go to your project target and select the Build phases tab. Click "+" in Link Binary with Library option in that tab and add your missed library.

Follow below link:

Source: adding an external library to a project in XCode 4.3

Community
  • 1
  • 1
Nandhakumar Kittusamy
  • 1,066
  • 12
  • 32