From 81498c92b73cc84950b889e0bd30b89d0d0dbc87 Mon Sep 17 00:00:00 2001 From: fariouche Date: Tue, 26 May 2020 10:05:38 +0200 Subject: [PATCH] Updated Readme --- port/android/README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/port/android/README.md b/port/android/README.md index ea7222dad..285adef84 100644 --- a/port/android/README.md +++ b/port/android/README.md @@ -81,7 +81,10 @@ The Makefile uses then the Android NDK that was installed above. Either set ANDROID_API and ANDROID_BASE in the Makefile or invoke like this: - make NDK_HOME=/opt/android-ndk ANDROID_API=23 + make NDK_HOME=~/android-arm-23 ANDROID_API=23 ANDROID_ABI=armeabi + +ANDROID_ABI can be x86_64, arm64_v8a, armeabi +Make sure to match the toolchain path with the ANDROID_ABI. Example Usage: @@ -89,7 +92,7 @@ Example Usage: or - make NDK_HOME=~/android-arm-23 ANDROID_API=23 IPV4=1 DEBUG=1 + make NDK_HOME=~/android-x86_64-27 ANDROID_API=27 ANDROID_ABI=x86_64 IPV4=1 DEBUG=1 The Make file will build and copy the library files (*.so and *.jar) into the provided samples. -- GitLab