Could not find com.github.hackware1993:MagicIndicator:1.7.0.
Could not find com.github.hackware1993:MagicIndicator:1.7.0.
·
我的gradle版本 7.1.2
前提:
//viewpager导航条扩展
api 'com.github.hackware1993:MagicIndicator:1.7.0'
在添加viewpager的导航条扩展的时候报错,
Could not find com.github.hackware1993:MagicIndicator:1.7.0.
方法:
在项目目录build.gradle -->repositories中加入:
maven { url "https://jitpack.io" }
allprojects {
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
}
}
如果没有依赖成功,或者报错:Received status code 502 from server: Bad Gateway;那么把maven放在jcenter()的后面;顺序也要保证;如:
maven {url "https://jitpack.io"}//放在前面,其他的maven,放在后面, maven { url 'https://dl.bintray.com/umsdk/release' }
如果有什么好的解决办法,欢迎留言补充。
更多推荐
已为社区贡献2条内容
所有评论(0)