我希望在我的应用程序中包含一个日历。因此,我尝试实现Roboto Calendar View。实施后:
dependencies {
implementation 'com.github.marcohc:robotocalendarview:<release>'
}
并且:
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
}
我收到错误:无法解决:com.github 受影响的模块。我怎么了?
答案 0 :(得分:0)
implementation 'com.github.marcohc:robotocalendarview:<release>'
此处<release>
表示当前可以下载的最新版本。这是3.6.1
。所以像这样改变你的依赖关系
实现'com.github.marcohc:robotocalendarview:3.6.1'