Skip to content

Commit

Permalink
[Gradle] Replace all jcenter with mavenCentral
Browse files Browse the repository at this point in the history
https://blog.gradle.org/jcenter-shutdown

PiperOrigin-RevId: 421331758
(cherry picked from commit ad97f01)
  • Loading branch information
dsn5ft committed Jan 12, 2022
1 parent 29e594c commit 4ade450
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ buildscript {
ext.kotlinVersion = '1.3.50'
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.0'
Expand All @@ -13,7 +13,7 @@ buildscript {
allprojects {
repositories {
google()
jcenter()
mavenCentral()
mavenLocal()
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ To use it:
allprojects {
repositories {
google()
jcenter()
mavenCentral()
}
}
```
Expand Down

0 comments on commit 4ade450

Please sign in to comment.