From 49eddcc33a6e2346008368deb0bd03fcec161ff3 Mon Sep 17 00:00:00 2001 From: Mark Sheppard Date: Tue, 27 Sep 2016 11:23:47 +0100 Subject: [PATCH] Mention the Android SDK in the build instructions --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 94f5274..c02285d 100644 --- a/README.md +++ b/README.md @@ -29,12 +29,15 @@ An out-of-tree build is required. You'll need a copy of the [Android NDK](https://developer.android.com/tools/sdk/ndk/index.html): tell configure about it by setting the `ANDROID_NDK` environment variable to your NDK path or by using the `--with-android-ndk` argument -to the configure script. +to the configure script. You'll also need to tell configure where the +Android SDK is by setting the `ANDROID_SDK` environment variable or +using the `--with-android-sdk` argument. For example: ```` ./autogen.sh export ANDROID_NDK=/path/to/android-ndk +export ANDROID_SDK=/path/to/android-sdk mkdir build cd build ../configure