use mavenCentral() repo instead of jcenter()

This commit is contained in:
basti564 2022-02-18 18:52:25 +01:00
parent 4b94395214
commit 6f42f62df4
2 changed files with 7 additions and 2 deletions

View File

@ -21,5 +21,10 @@
<option name="name" value="Google" />
<option name="url" value="https://dl.google.com/dl/android/maven2/" />
</remote-repository>
<remote-repository>
<option name="id" value="MavenRepo" />
<option name="name" value="MavenRepo" />
<option name="url" value="https://repo.maven.apache.org/maven2/" />
</remote-repository>
</component>
</project>

View File

@ -3,7 +3,7 @@ buildscript {
ext.kotlin_version = "1.5.31"
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.2'
@ -17,7 +17,7 @@ buildscript {
allprojects {
repositories {
google()
jcenter()
mavenCentral()
}
}