Skip to content

Commit 6877675

Browse files
committed
Replaced jcenter with mavencentral
1 parent 5e7e9fc commit 6877675

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ buildscript {
44

55
repositories {
66
google()
7-
jcenter()
7+
mavenCentral()
88
}
99
dependencies {
1010
classpath 'com.android.tools.build:gradle:8.0.2'
11-
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
11+
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
1212

1313
// NOTE: Do not place your application dependencies here; they belong
1414
// in the individual module build.gradle files
@@ -18,11 +18,11 @@ buildscript {
1818
allprojects {
1919
repositories {
2020
google()
21-
jcenter()
21+
mavenCentral()
2222
maven { url 'https://jitpack.io' }
2323
}
2424
}
2525

26-
task clean(type: Delete) {
26+
tasks.register('clean', Delete) {
2727
delete rootProject.buildDir
2828
}

0 commit comments

Comments
 (0)