aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAidan Follestad <drummer.aidan@gmail.com>2015-12-03 18:50:09 -0600
committerAidan Follestad <drummer.aidan@gmail.com>2015-12-03 18:50:09 -0600
commit3b8865106ed3b2e571ddf19ce389e8748c802e3b (patch)
tree96de6abf42d843dbdfbab32ece4e7339125d6197
parent1f8c8492d9d4ec88a1beeeba2146fa39024c8ddd (diff)
downloadafollestad-3b8865106ed3b2e571ddf19ce389e8748c802e3b.tar.gz
Update README.md
-rw-r--r--README.md11
1 files changed, 7 insertions, 4 deletions
diff --git a/README.md b/README.md
index a9d4f2f..f890c8c 100644
--- a/README.md
+++ b/README.md
@@ -83,11 +83,14 @@ repository will allow GitHub to email you whenever I publish a release.
### Repository
-First, add the following to your app's `build.gradle` file:
+Add this in your root `build.gradle` file (**not** your module `build.gradle` file):
-```Gradle
-repositories {
- maven { url "https://jitpack.io" }
+```gradle
+allprojects {
+ repositories {
+ ...
+ maven { url "https://jitpack.io" }
+ }
}
```