소스 검색

Update README.md

Aidan Follestad 9 년 전
부모
커밋
3b8865106e
1개의 변경된 파일7개의 추가작업 그리고 4개의 파일을 삭제
  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" }
+	}
 }
 ```