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
  • Loading branch information
dsn5ft committed Jan 12, 2022
1 parent 8f4837e commit ad97f01
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle
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
Expand Up @@ -31,7 +31,7 @@ To use it:
allprojects {
repositories {
google()
jcenter()
mavenCentral()
}
}
```
Expand Down

0 comments on commit ad97f01

Please sign in to comment.