com.ycuwq.widgets/datepicker 在 Maven 存储库中不可用

问题描述 投票:0回答:1

https://mvnrepository.com/artifact/com.ycuwq.widgets/datepicker说1.3.1在jcenter可用。

但是 jcenter 在 https://jcenter.bintray.com/ 上不可用。如何找到可能有该库副本的存储库

android datepicker jcenter maven-repository
1个回答
0
投票

我尝试使用这个,但没有出现问题。

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

pluginManagement {
    repositories {
        google()
        mavenCentral()
        gradlePluginPortal()
    }
}
dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
    }
}
© www.soinside.com 2019 - 2024. All rights reserved.