Skip to content
This repository has been archived by the owner on Sep 2, 2020. It is now read-only.

Mention the Android SDK in the build instructions #50

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down