Quellcode durchsuchen

Update README.md

Aidan Follestad vor 9 Jahren
Ursprung
Commit
3b8865106e
1 geänderte Dateien mit 7 neuen und 4 gelöschten Zeilen
  1. 7 4
      README.md

+ 7 - 4
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" }
+	}
 }
 ```