No description
Find a file
Sylvain Berfini 1ad330c8a4 Updated deliver_sdk
Conflicts:
	default.properties
2012-12-07 12:20:09 +01:00
jni Add WebRTC echo canceller. 2012-11-13 17:15:56 +01:00
libs Sending regId to flexisip using proxyconfig contact params 2012-09-07 11:13:49 +02:00
patches integrate ffmpeg patch to 2011-09-30 21:31:07 +02:00
res replace sip.linphone.org by sip.example.org 2012-12-07 11:46:36 +01:00
src/org/linphone Fix add number or address to contact from history or dialer 2012-12-06 16:14:47 +01:00
submodules Fix INVITE without SDP. 2012-12-04 16:28:50 +01:00
tests Update of tests + robotium 2012-12-04 17:41:02 +01:00
.classpath Fix classpath for eclipse. 2012-10-15 10:12:38 +02:00
.gitignore Improved Makefile 2012-12-03 13:13:13 +01:00
.gitmodules Use public url for webrtc submodule. 2012-11-15 13:10:14 +01:00
.project add ilbc 2010-06-30 09:54:16 +02:00
AndroidManifest.xml Fix incoming activity not showing up issue 2012-11-19 14:04:26 +01:00
ant.properties Improve build.xml to prevent copying the one from the Android SDK. 2012-10-22 15:53:25 +02:00
build.xml Improve build.xml to prevent copying the one from the Android SDK. 2012-10-22 15:53:25 +02:00
custom_rules.xml Updated deliver_sdk 2012-12-07 12:20:09 +01:00
default.properties Added blank default.properties 2012-07-11 13:57:27 +02:00
deliver_sdk.sh Updated deliver_sdk 2012-12-07 12:20:09 +01:00
Makefile Updated Makefile for MacOSX 2012-12-06 12:08:55 +01:00
prepare_sources.sh Fix android compilation issue with updated srtp 2012-04-27 17:57:15 +02:00
project.properties Added project.properties 2012-08-10 13:00:21 +02:00
README Display error popup if incompatible media parameters 2012-12-04 17:41:02 +01:00

			   LINPHONE for ANDROID
			****************************

To build liblinphone for Android, you must:
0) download the Android sdk with platform-tools and tools updated to latest revision, then add both 'tools' and 'platform-tools' folders in your path.
1) download the Android ndk (>=r8b) from google and add it to your path.
2) install the autotools: autoconf, automake, aclocal, libtoolize pkgconfig
2bis) on some 64 bits systems you'll need the ia32-libs package
3) run the Makefile script in the top level directory. This will download iLBC source files and convert some assembly files in VP8 project.
	$ make

To create an apk with a different package name, you need to edit the custom_rules.xml file:
1) look for the property named "linphone.package.name" and change it value accordingly
2) run again the Makefile script by calling "make"

Some options can be passed to make, like "make SOME_OPTION=SOME_VALUE".

Option Name     |     Possible values                                                                                                   	 | Default value 
-------------------------------------------------------------------------------------------------------------------------------------------------------
BUILD_X264            0 (don't build x264) or 1 (build x264)																				 | 0
BUILD_AMRNB           0 (don't build amrnb codec), light (try to use amrnb codec from android), full (build your own amrnb codec)       	 | light
BUILD_AMRWB           0 (don't build amrwb codec), 1 (build your own amrwb codec)                                                       	 | 1
BUILD_GPLV3_ZRTP      0 (don't support ZRTP), 1 (support ZRTP and make the whole program GPLv3)												 | 0
BUILD_SILK            0 (don't build silk plugin), 1 (build silk) [silk is Skype nonfree patented audio codec]								 | 0
BUILD_G729            0 (don't build g729 plugin), 1 (build g729) [g729 is nonfree patented audio codec, contact Sipro lab for more details] | 0
BUILD_TUNNEL          0 (don't build tunnel), 1 (build tunnel) [requires a tunnel implementation in submodules/linphone/tunnel]				 | 0
BUILD_WEBRTC_AECM     0 (don't build echo canceler), 1 (build echo canceler)																 | 1
USE_JAVAH             0 (don't generate header), 1 (generate header for linphone_core_jni) [used to check errors at liblinphone compilation] | 1