compile 'com.github.RogaLabs:social-login:1.2.1'
compile 'com.github.mukeshsolanki:social-login-helper:1.0.2'
compile 'com.github.robertsimoes:Shareable:0.1.0'
compile 'com.github.fccaikai:BottomMenuTutorial:1.0.1'
我也尝试了其他一些库,他们也提供了这种类型的错误,但是当我使用Glide或Picasso库时,它们完全同步。
但得到以下错误
我正在使用Gradle版本:2.14.1
答案 0 :(得分:2)
首先请务必在build.gradle
根级别 部分添加 jitpack.io 。
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
}
}
之后清理重建和运行。