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

Java 无法解析:com.github受影响的模块,java,android,lib,Java,Android,Lib,我喜欢在我的应用程序中包含日历。所以我尝试实现Roboto日历视图。实施后: dependencies { implementation 'com.github.marcohc:robotocalendarview:<release>' } 我收到错误:未能解析:com.github 受影响的模块。我做错了什么?implementation'com.github.maroch:robotocalendarview:' implementation 'com.

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

 dependencies {

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

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

implementation'com.github.maroch:robotocalendarview:'
   implementation  'com.github.marcohc:robotocalendarview:<release>'
此处的
表示当前可供下载的最新版本。这是
3.6.1
。所以像这样改变你的依赖关系

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


将实现“com.github.marochc:robotocalendarview:”更改为实现“com.github.marochc:robotocalendarview:3.6.1”,然后重试。
   implementation  'com.github.marcohc:robotocalendarview:<release>'