From d09dc09ffed6a2094ae00610a1838b6ec7008f42 Mon Sep 17 00:00:00 2001 From: Tom Hennen Date: Sun, 15 Mar 2015 14:51:00 -0400 Subject: [PATCH] Updated Building AntennaPod (markdown) --- Building-AntennaPod.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Building-AntennaPod.md b/Building-AntennaPod.md index e4c1a63..c7e64cd 100644 --- a/Building-AntennaPod.md +++ b/Building-AntennaPod.md @@ -68,8 +68,10 @@ There are several different tools available for building AntennaPod. You only ha - You can either use the version of gradle that is installed on your system or the wrapper script `gradlew` in the project's repository. It is recommended to use the wrapper script because it will always use a version of gradle that is compatible with the project setup and it will update itself automatically if necessary. - If you use the version of gradle that is installed on your system, make sure to use the latest version of gradle. - You may need to set ANDROID_HOME to point to your Android SDK before running Gradle - export ANDROID_HOME=/Users/username/development/android/sdk - gradle foo +``` +export ANDROID_HOME=/Users/username/development/android/sdk +gradle foo +``` - The wrapper script can be found in the project's root folder. On Windows, you should use `gradlew.bat`, on all other operating system you should `gradlew`. You can execute the usual gradle commands by replacing the `gradle` command with `./gradlew`. For example