本文主要是介绍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报错:ERROR: Failed to resolve: com.github.Aspsine:SwipeToLoadLayout:1.0.3的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!