Failed to resolve: com.github.lisawray.groupie:groupie:2.9.0
AhmedShehatah opened this issue · 9 comments
Describe the bug
Currently I'm using Android Studio Bumblebee | 2021.1.1
and is shows me this '''Failed to resolve: com.github.lisawray.groupie:groupie:2.9.0'''
Library version
[2.9.0]
Try this one "com.xwray:groupie:groupie:2.9.0"
Try this one "com.xwray:groupie:groupie:2.9.0"
Not Working
could it be a problem here ??
`
buildscript {
repositories {
google()
}
dependencies {
classpath 'com.google.gms:google-services:4.3.10'
}
}
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.1.0' apply false
id 'com.android.library' version '7.1.0' apply false
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}
`
I found were the problem is jCent() was deprecated and in the new update for android studio they changed in settings.gradle
dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS) repositories { google() mavenCentral() jcenter() // Warning: this repository is going to shut down soon maven { url 'https://jitpack.io' } } } rootProject.name = "appname" include ':app'
to
`dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}`
Hi, I am facing the same issue. Could you please explain what you did as I am still not able to integrate groupie into my project.
You are probably missing this block in your settings.gradle
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' } // <--
jcenter() // Warning: this repository is going to shut down soon
}
}
can anybody please explain the difference between com.github.lisawray.*** and com.xwray.***?
@Asalle the difference is that the com.github.*
variant is hosted on Jitpack, which is done to the new versions.
com.xwray
was hosted on JCenter, and not only did we not really have the credentials to put newer versions there (I think?) the real issue is that JCenter is a read-only repository, updates cannot be put there. So this library is now hosted on Jitpack.