From a982c2a3d937b7afeb346f747ae2e9ffecae2c44 Mon Sep 17 00:00:00 2001 From: Mohit Atray Date: Wed, 9 Sep 2020 03:38:24 +0530 Subject: [PATCH] Update README.md `maven { url 'https://jitpack.io' }` line should be added to `repositories` in `allprojects` and not in `repositories` in `buildscript`. See https://jitpack.io --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 46006a1e06..fb33b36b71 100644 --- a/README.md +++ b/README.md @@ -26,8 +26,10 @@ ### Gradle Setup ```gradle -repositories { - maven { url 'https://jitpack.io' } +allprojects { + repositories { + maven { url 'https://jitpack.io' } + } } dependencies {