Add mavenCentral, de-prioritize jcenter

This commit is contained in:
TacoTheDank 2021-06-20 15:44:17 -04:00
parent 6c575511be
commit 08d4651ef0
2 changed files with 6 additions and 4 deletions

View File

@ -234,8 +234,8 @@ dependencies {
kapt "com.google.auto.service:auto-service:${googleAutoServiceVersion}"
// Manager for complex RecyclerView layouts
implementation "com.xwray:groupie:${groupieVersion}"
implementation "com.xwray:groupie-viewbinding:${groupieVersion}"
implementation "com.github.lisawray.groupie:groupie:${groupieVersion}"
implementation "com.github.lisawray.groupie:groupie-viewbinding:${groupieVersion}"
// Circular ImageView
implementation "de.hdodenhof:circleimageview:3.1.0"

View File

@ -3,8 +3,9 @@
buildscript {
ext.kotlin_version = '1.4.10'
repositories {
jcenter()
google()
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.3'
@ -17,8 +18,9 @@ buildscript {
allprojects {
repositories {
jcenter()
google()
mavenCentral()
jcenter()
maven { url "https://jitpack.io" }
maven { url "https://clojars.org/repo" }
}