Closed jblejder closed 3 years ago
It's definitely on there https://jitpack.io/#lisawray/groupie/2.9.0
I think it's the subprojects
that's causing you trouble, for me it's always been allprojects {
.
I found the real cause, which is that new projects get a NEW block where you ALSO need to add the repository.
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
}
}
This is inside settings.gradle
. I need to update the Readme to include this.
Describe the bug On fresh project failed to resolve
I have
in root gradle file
although previous identifier works fine
Is it only me? I'm not sure what I'm doing wrong.
So I think the Readme needs to be changed or make it available on new package.