tbruyelle/RxPermissions

Need to Migrate JCenter to mavenCentral

abhi301285 opened this issue · 5 comments

Hi Team,

As JCenter is shutting down and we need to migrate to mavenCentral.
Is there any plan to migrate RxPermission to mavenCentral.
If yes, when we can expect the change so we can use RxPermission.

Thanks.

+1

+1. It seems as though the JCenter/JFrog sunset is finally here, as it seems very difficult to move any dependencies forward with out fully removing JCenter. Please consider doing the needful to get this library back into good working order!

Solution:
Add configuration in settings.gradle file

image

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
        maven { url 'https://jitpack.io' }
    }
}
rootProject.name = "rxjava"
include ':app'

HI Team,
We tried above code but still it is not working, Are any other things we need to change in the gradle?

The above solution didn't work for me either - raised issues with my top-level build.gradle. I'm a bit confused by the line rootProject.name = "rxjava" - does this need to be our own project name, or is there some piece that I'm missing?