Skip to content

Commit 9746bf5

Browse files
Merge pull request #107 from sayurimizuguchi/master
Change priority to use MavenCentral instead of JCenter since it became read-only and it is often offline.
2 parents 8e8a850 + 14f7846 commit 9746bf5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

android/build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ buildscript {
1010
if (project == rootProject) {
1111
repositories {
1212
google()
13+
mavenCentral()
14+
// JCenter is going read-only repository indefinitely
15+
// Gradle is discouraging jcenter to avoid to avoid build issues - pipeline
16+
// ref: https://blog.gradle.org/jcenter-shutdown
1317
jcenter()
1418
}
1519

@@ -38,8 +42,8 @@ android {
3842

3943
repositories {
4044
google()
41-
jcenter()
4245
mavenCentral()
46+
jcenter()
4347
}
4448

4549
dependencies {

0 commit comments

Comments
 (0)