aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to '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" }
+ }
}
```