gradle报错:ERROR: Failed to resolve: com.github.Aspsine:SwipeToLoadLayout:1.0.3

报错:

ERROR: Failed to resolve: com.github.Aspsine:SwipeToLoadLayout:1.0.3
Show in Project Structure dialog
Affected Modules: logic, views

解决:

查看项目中依赖和仓库均已添加:

allprojects {
    repositories {
        jcenter()
        maven { url "https://jitpack.io" }
        google()
    }
}
compile 'com.github.Aspsine:SwipeToLoadLayout:1.0.3'

到GitHub上切换到分支1.0.3查看依赖添加的文档,发现版本号处少了一个v,添加上再次build发现还是失败:

compile 'com.github.Aspsine:SwipeToLoadLayout:v1.0.3'

最后直接使用下一个版本:1.0.4,build成功。

compile 'com.github.Aspsine:SwipeToLoadLayout:1.0.4'

你可能感兴趣的:(gradle)