Error:(74, 13) Failed to resolve: com.github.CymChad:BaseRecyclerViewAdapterHelper:v2.9.22
需要在project 的build.gradle 的 allprojects 中添加
maven{url "http://jitpack.io"} 如下所示
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io"}
}
}