Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

edit linphone library iOS

I'm developing a VoIP app on iOS using the linphone SDK. I git linphone project here (git clone git://git.linphone.org/linphone-iphone.git --recursive). I built successfully. Taking a test call works OK.

But I want to edit some files in linphone, for example belle-sip, linphonecore.c, linphonecall.c, etc... in Xcode. After I do this I have to make whole linphone SDK (like in README: make all, ...) to have Xcode run with the code I've edited.

Is there another way I can update the code in Xcode without rebuilding the whole linphone SDK???

like image 748
LViet Avatar asked Dec 21 '13 04:12

LViet


1 Answers

You just need to build or compile Linphone from Source.

$ cd submodules/build
$ make veryclean
$ make all

then, open linphone.xcodeproj in linphone-iphone directory. Just build as normal.

See more details here: Build or Compile Linphone from Source for iPhone and iPad

like image 132
Shamsudheen TK Avatar answered Sep 20 '22 23:09

Shamsudheen TK