huanghaibin-dev / CalendarView

Android上一个优雅、万能自定义UI、仿iOS、支持垂直、水平方向切换、支持周视图、自定义周起始、性能高效的日历控件,支持热插拔实现的UI定制!支持标记、自定义颜色、农历、自定义月视图各种显示模式等。Canvas绘制,速度快、占用内存低,你真的想不到日历居然还可以如此优雅!An elegant, highly customized and high-performance Calendar Widget on Android.
Apache License 2.0
9.04k stars 1.78k forks source link

Failed to resolve: com.haibin:calendarview:3.6.8,添加这个依赖时,用不了这是为什么呀?有没有大神知道的?还是现在已经不开源了? #796

Open Qinglin66 opened 2 years ago

Qinglin66 commented 2 years ago

Failed to resolve: com.haibin:calendarview:3.6.8,添加这个依赖时,用不了这是为什么呀?有没有大神知道的?还是现在已经不开源了?

qhzzl commented 2 years ago

也许jcenter跑路了

angcyo commented 2 years ago

https://github.com/angcyo/CalendarView

Qinglin66 commented 2 years ago

您好!您的邮件已收到!辛苦了

LegendBug commented 8 months ago

倒腾了半天下载好了,gradle版本8.0。 虽然一年多了但还是回复一下,在settings.gradle(项目名)这里加上一行:

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
        jcenter() // 关键是这个仓库!!!
    }
}
zaoan660 commented 7 months ago

倒腾了半天下载好了,gradle版本8.0。 虽然一年多了但还是回复一下,在settings.gradle(项目名)这里加上一行:

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
        jcenter() // 关键是这个仓库!!!
    }
}

谢谢你,也许你的回复对楼主有点晚,但对我有很大的帮助

fushui-Fang commented 3 months ago

倒腾了半天下载好了,gradle版本8.0。 虽然一年多了但还是回复一下,在settings.gradle(项目名)这里加上一行:

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
        jcenter() // 关键是这个仓库!!!
    }
}

感谢!