Updated Building AntennaPod (markdown)

Tom Hennen 2015-03-15 14:51:00 -04:00
parent f55454d42f
commit d09dc09ffe
1 changed files with 4 additions and 2 deletions

@ -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