Skip to content

Commit

Permalink
Merge pull request #1 from sayurimizuguchi/adhoc/fix-jcenter-issues
Browse files Browse the repository at this point in the history
add mavenCentral as priority for repos than jcenter
  • Loading branch information
sayurimizuguchi committed May 10, 2022
2 parents 8e8a850 + 51e0408 commit 14f7846
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 14f7846

Please sign in to comment.