Skip to content

Commit

Permalink
Remove Maven repo jcenter() and use google()
Browse files Browse the repository at this point in the history
  • Loading branch information
centic9 committed Dec 8, 2023
1 parent 918a59d commit 7641bac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 11 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
buildscript {
repositories {
mavenCentral()
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.4.2'
Expand All @@ -10,8 +10,8 @@ buildscript {

allprojects {
repositories {
mavenCentral()
google()
jcenter()
}
}

Expand Down
5 changes: 0 additions & 5 deletions poitest/build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
apply plugin: 'com.android.application'

repositories {
google()
jcenter()
}

dependencies {
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.4'
implementation 'androidx.multidex:multidex:2.0.1'
Expand Down
5 changes: 1 addition & 4 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
pluginManagement {
buildscript {
repositories {
mavenCentral()
maven {
url = uri("https://maven.google.com")
}
google()
}
dependencies {
classpath("com.android.tools:r8:8.2.33")
Expand Down

0 comments on commit 7641bac

Please sign in to comment.