From e74e4bc8d2c4ccff3040049c7cc94ffbe16eba05 Mon Sep 17 00:00:00 2001 From: Erwan Croze Date: Mon, 2 Oct 2017 14:47:11 +0200 Subject: [PATCH] Update README --- README.md | 6 +++--- prepare.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a47a430d7..29a2a15b8 100644 --- a/README.md +++ b/README.md @@ -4,11 +4,11 @@ Linphone is a free VoIP and video softphone based on the SIP protocol. ## 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. * With the latest Debian (multiarch), you need this: * `dpkg --add-architecture i386` diff --git a/prepare.py b/prepare.py index 760ea3f4d..442668615 100755 --- a/prepare.py +++ b/prepare.py @@ -95,7 +95,7 @@ class AndroidPreparator(prepare.Preparator): def __init__(self, targets=android_targets): 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.unsupported_ndk_version = None self.min_cmake_version = "3.7"