com.ycuwq.widgets/datepicker not available in maven repository

43 views Asked by At

https://mvnrepository.com/artifact/com.ycuwq.widgets/datepicker says 1.3.1 available in jcenter.

But jcenter is not available at https://jcenter.bintray.com/. How to find the repository which could have a copy of this library

1

There are 1 answers

1
Gold Yon War On

I try with this one but no issue appear.

implementation("com.ycuwq.widgets:datepicker:1.3.1")

pluginManagement {
    repositories {
        google()
        mavenCentral()
        gradlePluginPortal()
    }
}
dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
    }
}