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

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

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

 dependencies {

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

}

和:

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

}
}

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

java android lib
1个回答
0
投票
   implementation  'com.github.marcohc:robotocalendarview:<release>'

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

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

© www.soinside.com 2019 - 2024. All rights reserved.