From 61d6be0c44e232cc42f38955c0fee02bc38fc4d6 Mon Sep 17 00:00:00 2001 From: Pierry Borges Date: Tue, 2 Oct 2018 15:20:21 -0300 Subject: [PATCH] Update readme.md --- readme.md | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index f5ccf1a..130978e 100644 --- a/readme.md +++ b/readme.md @@ -14,12 +14,28 @@ Gradle Into your app build.gradle: - repositories { - maven { url "https://jitpack.io" } +Ensure you add the maven { url "https://jitpack.io" } under allprojects instead of buildscript. + + buildscript { + repositories { + jcenter() + // DO NOT ADD IT HERE!!! + } + ... } + allprojects { + repositories { + mavenLocal() + jcenter() + // ADD IT HERE + maven { url "https://jitpack.io" } + } + } + + dependencies { - compile 'com.github.Pierry:Progress:1.1' + implementation 'com.github.Pierry:Progress:1.0' } Ref. https://jitpack.io/#Pierry/Progress/1.1