无法解决:com.github受影响的模块

时间:2019-02-15 07:10:29

标签: java android lib

我希望在我的应用程序中包含一个日历。因此,我尝试实现Roboto Calendar View。实施后:

 dependencies {

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

}

并且:

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

}
}

我收到错误:无法解决:com.github 受影响的模块。我怎么了?

1 个答案:

答案 0 :(得分:0)

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

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

  

实现'com.github.marcohc:robotocalendarview:3.6.1'