异常 Failed to resolve: com.github.依赖库名称

找不到该依赖库

在build.gradle添加即可

allprojects {
    
    
    repositories {
    
    
        google()
        jcenter()
        maven {
    
     url "https://jitpack.io" }
    }
}

猜你喜欢

转载自blog.csdn.net/qq_28643195/article/details/108125666