summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGautam Korlam <gkorlam@uber.com>2016-10-07 00:21:44 -0700
committerGautam Korlam <gkorlam@uber.com>2016-10-07 00:26:27 -0700
commitacc0b4ee1772476e6db06e534ff629a6dcfc08bc (patch)
treebf7f68a412f26120e1b006a252525ac22da4e7f4
parent4e67965a85159ca01de3d88a344f0f95279b1d40 (diff)
downloadandroid-studio-gradle-test-acc0b4ee1772476e6db06e534ff629a6dcfc08bc.tar.gz
Update README
-rw-r--r--README.md13
1 files changed, 8 insertions, 5 deletions
diff --git a/README.md b/README.md
index 138ec20..8b487ee 100644
--- a/README.md
+++ b/README.md
@@ -1,27 +1,30 @@
# android-studio-gradle-test
A test project with a structure to stress test and find out issues in Android Studio and Gradle
-Also provides an alternative build path using [Buck](https://buckbuild.com/) to compare. For more details on how the buck build path is setup, please see [OkBuck](https://github.com/OkBuilds/OkBuck)
+Also provides an alternative build path using [Buck](https://buckbuild.com/) to compare. For more details on how the buck build path is setup, please see [OkBuck](https://github.com/uber/okbuck)
[![Master branch build status](https://travis-ci.org/kageiit/android-studio-gradle-test.svg?branch=master)](https://travis-ci.org/kageiit/android-studio-gradle-test)
## To build all apps with gradle:
```bash
-./gradlew assemble
+./buildWithGradle
```
## To build all apps with buck
### Setup
+#### Mac OS X
```bash
brew update
-brew install watchman ant
+brew install ant watchman
```
+#### Linux
+Installation instructions for: [Ant](http://ant.apache.org/), [Watchman](https://facebook.github.io/watchman/docs/install.html)
+
### Build
```bash
-./buckw targets # to make sure buckw will invoke the gradle okbuck task if needed
-./buckw query "kind('android_binary', '//...')" | xargs ./buckw build
+./buildWithBuck
```
## Incremental build comparision