mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
25 lines
845 B
Text
25 lines
845 B
Text
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
|
|
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
|
|
----------------------------------------
|
|
BUILD_X264 0 (don't build x264) or 1 (build x264)
|
|
BUILD_AMR 0 (don't build amr codec), light (try to use amr codec from android), full (build your own amr codec)
|
|
|
|
|
|
|
|
|
|
|
|
|