Update README
This commit is contained in:
parent
d0a13971b8
commit
e74e4bc8d2
2 changed files with 4 additions and 4 deletions
|
@ -4,11 +4,11 @@ Linphone is a free VoIP and video softphone based on the SIP protocol.
|
||||||
|
|
||||||
## To build liblinphone for Android, you must:
|
## To build liblinphone for Android, you must:
|
||||||
|
|
||||||
1. Download the Android sdk (API 25.2.3 at max) with platform-tools and tools updated to latest revision, then add both 'tools' and 'platform-tools' folders in your path and the android-sdk folder to ANDROID_HOME environment variable.
|
1. Download the Android sdk (API 26.0.1 at max) with platform-tools and tools updated to latest revision, then add both 'tools' and 'platform-tools' folders in your path and the android-sdk folder to ANDROID_HOME environment variable.
|
||||||
|
|
||||||
2. Download the Android ndk (version r11c or 13b) from google and add it to your path (no symlink !!!) and ANDROID_NDK environment variable.
|
2. Download the Android ndk (version r11c or 15) from google and add it to your path (no symlink !!!) and ANDROID_NDK environment variable.
|
||||||
|
|
||||||
3. Install _yasm_, _nasm_, _ant_, _python_, _intltoolize_, _cmake_ and _vim-common_.
|
3. Install _yasm_, _nasm_, _ant_, _python_, _intltoolize_, _cmake(3.7)_ and _vim-common_.
|
||||||
* On 64 bits linux systems you'll need the _ia32-libs_ package.
|
* On 64 bits linux systems you'll need the _ia32-libs_ package.
|
||||||
* With the latest Debian (multiarch), you need this:
|
* With the latest Debian (multiarch), you need this:
|
||||||
* `dpkg --add-architecture i386`
|
* `dpkg --add-architecture i386`
|
||||||
|
|
|
@ -95,7 +95,7 @@ class AndroidPreparator(prepare.Preparator):
|
||||||
|
|
||||||
def __init__(self, targets=android_targets):
|
def __init__(self, targets=android_targets):
|
||||||
prepare.Preparator.__init__(self, targets, default_targets=['armv7', 'arm64', 'x86'])
|
prepare.Preparator.__init__(self, targets, default_targets=['armv7', 'arm64', 'x86'])
|
||||||
self.min_supported_ndk = 10
|
self.min_supported_ndk = 11
|
||||||
self.max_supported_ndk = 15
|
self.max_supported_ndk = 15
|
||||||
self.unsupported_ndk_version = None
|
self.unsupported_ndk_version = None
|
||||||
self.min_cmake_version = "3.7"
|
self.min_cmake_version = "3.7"
|
||||||
|
|
Loading…
Reference in a new issue