Skip to content

Commit

Permalink
Replace deprecated jcenter()
Browse files Browse the repository at this point in the history
  • Loading branch information
nevenz committed May 25, 2021
1 parent 651607c commit bacaee8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ dependencies {

implementation "com.github.bumptech.glide:glide:$versions.glide"

implementation("com.thegrizzlylabs.sardine-android:sardine-android:$versions.sardine") {
implementation("com.github.thegrizzlylabs:sardine-android:$versions.sardine") {
exclude group: 'xpp3', module: 'xpp3'
}

Expand Down
11 changes: 8 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ buildscript {
ext.versions = versions

repositories {
jcenter()
mavenCentral()
google()
}

Expand All @@ -83,12 +83,17 @@ plugins {

allprojects {
repositories {
jcenter()
mavenCentral()

google()

maven {
url "https://oss.sonatype.org/content/repositories/snapshots"
url 'https://oss.sonatype.org/content/repositories/snapshots'
}

// For sardine-android
maven {
url 'https://jitpack.io'
}
}

Expand Down

0 comments on commit bacaee8

Please sign in to comment.