No description
Find a file
2012-05-10 16:56:50 +02:00
jni Fix last issue with pause + fix shared libs without neon problem 2012-04-17 16:57:37 +02:00
libs Wizard for Android 2012-02-02 10:34:29 +01:00
patches integrate ffmpeg patch to 2011-09-30 21:31:07 +02:00
res Echo limiter by default + higher el_sustain 2012-05-04 10:52:25 +02:00
src/org Load neon liblinphone if fails to load no-neon liblinphone 2012-05-10 10:46:41 +02:00
submodules oRTP updated 2012-05-09 12:19:14 +02:00
.classpath Fix classpath to export xmlrpc lib in apk 2012-04-20 09:53:03 +02:00
.gitignore fix tcp 2011-07-01 12:03:38 +02:00
.gitmodules add g729 integration 2012-02-17 11:30:39 +01:00
.project add ilbc 2010-06-30 09:54:16 +02:00
AndroidManifest.xml Some fixes and improvements 2012-04-13 10:05:56 +02:00
build.xml Better ant script 2012-05-10 16:56:50 +02:00
default.properties Restore once again default.properties 2011-11-03 16:19:37 +01:00
deliver_sdk.sh fix deliver_sdk.sh 2012-03-02 15:35:39 +01:00
prepare_sources.sh Fix android compilation issue with updated srtp 2012-04-27 17:57:15 +02:00
README update bcg729 2012-02-23 10:34:10 +01:00

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

To build liblinphone for Android, you must:
1) download the Android ndk (>=r5c) from google.
2) install the autotools: autoconf, automake, aclocal, libtoolize pkgconfig
3) run the ./prepare_sources.sh script in the top level directory. This will download iLBC source files and convert some assembly files in VP8 project.

	$ ./prepare_sources.sh

4) finally from directory linphone-android, just execute command:
	$ ${my google ndk directory}/ndk-build

Some options can be passed to ndk-build, like "ndk-build SOME_OPTION=SOME_VALUE"

Option Name     |     Possible values                                                                                                   | Default value 
-------------------------------------------------------------------------------------------------------------------------------------------------------
BUILD_X264            0 (don't build x264) or 1 (build x264)										
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)
BUILD_SILK            0 (don't build silk plugin), 1 (build silk) [silk is Skype nonfree patented audio codec]
BUILD_G729            0 (don't build g729 plugin), 1 (build g729) [g729 is nonfree patented audio codec, contact Sipro lab for more details]
BUILD_TUNNEL          0 (don't build tunnel), 1 (build tunnel) [requires a tunnel implementation in submodules/linphone/tunnel]

In order to use ZRTP you also need to define the media_encryption property to
"zrtp" in the sip section of linphonerc file.