Edit linphone iOS library

I am developing a VoIP application on iOS using the linphone SDK. I have git linphone here ( git clone git://git.linphone.org/linphone-iphone.git --recursive ). I have successfully built. Making a test call works fine.

But I want to edit some files in linphone, for example belle-sip , linphonecore.c , linphonecall.c , etc. in Xcode. After that, I have to make the whole linphone SDK (as in README: make all , ...) so that Xcode works with the code that I edited.

Is there any other way to update the code in Xcode without rebuilding the entire linphone SDK ???

+7
ios iphone linphone
source share
2 answers

You just need to compile or compile Linphone from Source.

 $ cd submodules/build $ make veryclean $ make all 

then open linphone.xcodeproj in the linphone-iphone directory. Just create as usual.

For more information see: Build or compile Linphone from source for iPhone and iPad

+1
source share

I think the best way to shorten the time is to compile linphone, take a breath into the static library using Xcode. After that, you will only need to link to the library (.a file) to start the Linphone application project.

This method has two main advantages:

1. It helps you better control the core library.
2. This helps reduce compilation time because you only need to recompile only the main library.

0
source share

All Articles