No description
Find a file
2013-05-22 16:13:35 +02:00
Classes update libvpx to v1.2.0 2013-05-22 16:13:35 +02:00
liblinphone-tutorials/hello-world Install the tutorials source code in the sdk zip and use this installed source code in the tutorials xcode project. 2013-04-10 12:27:29 +02:00
linphone.ldb Add buttons to select the audio route (bluetooth, receiver, speaker). 2013-03-19 12:18:51 +01:00
linphone.xcodeproj update libvpx to v1.2.0 2013-05-22 16:13:35 +02:00
Resources fix rotation issue introduced by fixe of mode display_filter_auto_rotate 2013-04-22 11:50:03 +02:00
Settings/InAppSettings.bundle Add aac-eld in the list of available codecs 2013-04-21 22:11:13 +02:00
submodules update libvpx to v1.2.0 2013-05-22 16:13:35 +02:00
.gitignore Add files to .gitignore 2012-09-11 17:58:57 +02:00
.gitmodules g729A integration based on bcg729 2012-02-16 15:46:45 +01:00
COPYING add GPL license 2011-08-12 17:55:48 +02:00
disable-security.patch apple sore version 1.1 2011-11-29 11:43:55 +01:00
iTunesArtwork iTunesArtwork must be at the root directory level 2012-12-14 08:17:51 +01:00
linphone-Info.plist Increase version number. 2013-04-04 12:23:15 +02:00
Linphone.clr Add linphone palette 2012-09-28 12:13:31 +02:00
linphone_Prefix.pch initial commit with basic ui 2010-01-22 11:44:23 +01:00
main.m Add DEBUG symbol in debug configuration 2012-08-09 16:46:43 +02:00
NEWS Add NEWS file 2012-10-04 11:01:45 +02:00
README remove armv6 build 2012-09-21 22:29:33 +02:00

					            LINPHONE ON IPHONE
					******************************************

					
BUILD PREQUISITES
*****************

Linphone for iPhone depends on liblinphone sdk. This SDK is generated from makefiles and shell scripts.
You must first install both xcode with iPhone OS SDK and MacPorts (www.macports.org) for these scripts to work.

Make sure that /opt/local/bin (macport tools) arrives first in your PATH env variable, so that the macport tools are taken in place of the versions brought by Apple in /usr/bin. Otherwise the build will fail with obscure errors.

Once xcode and macports are installed, open a terminal and install the required build-time tools with:

	$ sudo port install coreutils automake autoconf libtool intltool wget pkgconfig cmake gmake yasm grep doxygen ImageMagick optipng


Install gas-preprosessor.pl  (http://github.com/yuvi/gas-preprocessor/ ) to be copied into /opt/local/bin :

	$ wget --no-check-certificate https://raw.github.com/yuvi/gas-preprocessor/master/gas-preprocessor.pl
	$ sudo mv gas-preprocessor.pl /opt/local/bin/.
	$ sudo chmod +x /opt/local/bin/gas-preprocessor.pl

Link macport libtoolize to glibtoolize 

	$ sudo ln -s /opt/local/bin/glibtoolize /opt/local/bin/libtoolize

Link host's strings to simulator SDK 

	For Xcode prior to 4.3:
	$ sudo ln -s  /usr/bin/strings /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/strings
	For newer XCode:
	$ sudo ln -s  /usr/bin/strings /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/strings


BUILDING THE SDK
****************

 * GPL third parties versus non GPL third parties

 This sdk can be generated in 2 flavors. Firt is with GPL third parties, it means liblinphone includes GPL third parties like FFMPEG or x264. 
 If you choose this flavor, your final application must comply with GPL in any case. This is the default mode.

 To generate the liblinphone multi arch sdk in GPL mode, do:
	$ cd submodules/build
	$ make all 

 ALTERNATIVELY, you can force liblinphone to use only non GPL code except for liblinphone, mediastremer2, ortp, exosip, osip.
 If you choose this flavor, your final application  is still subject to GPL except if you have a commercial license for liblinphone, mediastremer2, ortp, exosip, osip.

 To generate the liblinphone multi arch sdkin non GPL mode, do:
	$ cd submodules/build
	$ make all enable_gpl_third_parties=no

xcode prior to 4.5:
	$ make -f Makefile.xcode4.4
 * ZRTP support

 You can enable ZRTP support in GPL mode only, by adding "enable_zrtp=yes" to the make command, for example:
 	$ make all enable_gpl_third_parties=yes enable_zrtp=yes
	

The resulting sdk is in liblinphone-sdk/ directory.


In case you upgrade your IOS SDK, you may force rebuilding everything, by doing
	$ make veryclean
	$ make all

BUILDING THE APPLICATION
************************

After the SDK is built, just open the linphone xcode project with Xcode, and press "Run".

 * Note regarding third party components subject to license
 
The liblinphone-sdk is compiled with third parties code that are subject to patent license, specially: AMR, SILK G729 and  X264 codecs.
Linphone controls the embedding of these codecs thanks to the preprocessor macros HAVE_SILK, HAVE_AMR, HAVE_G729 HAVE_X264 positioned in xcode project.
Before embeding these 4 codecs in the final application, make sure to have the right to do so.

TRANSLATER THE APPLICATION
**************************

You have to download the application Localization Suite(http://www.loc-suite.org/)
Each modification in a xib have to be scanned and synchronized


LIMITATIONS, KNOWN BUGS
***********************

* Video capture does not work in simulator (not implemented by simulator ?).
* Sound does not work well (or at all) in simulator