未能解决:com.github 个受影响的模块

Failed to resolve: com.github Affected Modules

我喜欢在我的应用程序中包含一个日历。所以我尝试实现 Roboto 日历视图。实施后:

 dependencies {

    implementation  'com.github.marcohc:robotocalendarview:<release>'

}

并且:

allprojects {
repositories {
    google()
    jcenter()
    maven { url "https://jitpack.io" }

}
}

我收到错误:解析失败:com.github 受影响的模块。我做错了什么?

   implementation  'com.github.marcohc:robotocalendarview:<release>'

此处<release>表示当前可供下载的最新版本。这是 3.6.1 。所以像这样改变你的依赖关系

implementation 'com.github.marcohc:robotocalendarview:3.6.1'