Skip to content

Commit

Permalink
Merge remote-tracking branch 'github/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierry committed Oct 2, 2018
2 parents 651ed25 + 61d6be0 commit 632547f
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 632547f

Please sign in to comment.