Skip to content

Commit

Permalink
Merge pull request #107 from sayurimizuguchi/master
Browse files Browse the repository at this point in the history
Change priority to use MavenCentral instead of JCenter since it became read-only and it is often offline.
  • Loading branch information
pradeep1991singh committed May 23, 2022
2 parents 8e8a850 + 14f7846 commit 9746bf5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ buildscript {
if (project == rootProject) {
repositories {
google()
mavenCentral()
// JCenter is going read-only repository indefinitely
// Gradle is discouraging jcenter to avoid to avoid build issues - pipeline
// ref: https://blog.gradle.org/jcenter-shutdown
jcenter()
}

Expand Down Expand Up @@ -38,8 +42,8 @@ android {

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

dependencies {
Expand Down

0 comments on commit 9746bf5

Please sign in to comment.