From 6dc78031873d117446a553bc1c34f5b1400fd72f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1ty=C3=A1s=20Mustoha?= Date: Tue, 24 May 2016 10:30:11 +0200 Subject: [PATCH] Update Android build instructions in README --- README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 23a18ba80a2..8e8210422b9 100644 --- a/README.md +++ b/README.md @@ -143,9 +143,14 @@ real-world use, add the `--release` flag to create an optimized build: ``` sh git clone https://github.com/servo/servo cd servo -ANDROID_TOOLCHAIN=/path/to/toolchain ANDROID_NDK=/path/to/ndk PATH=$PATH:/path/to/toolchain/bin ./mach build --android -cd ports/android -ANDROID_SDK=/path/to/sdk make install + +export ANDROID_SDK="/path/to/sdk" +export ANDROID_NDK="/path/to/ndk" +export ANDROID_TOOLCHAIN="/path/to/toolchain" +export PATH="$PATH:/path/to/toolchain/bin" + +./mach build --release --android +./mach package --release ``` Rather than setting the `ANDROID_*` environment variables every time, you can