美文网首页
Failed to resolve: support-core-

Failed to resolve: support-core-

作者: vb12 | 来源:发表于2018-11-06 15:14 被阅读595次

    在顶层build.gradle文件中把google()放在第一位置.

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

    相关问题: https://stackoverflow.com/questions/49707835/android-studio-failed-to-resolve-support-core-utils

    实测可用

    相关文章

      网友评论

          本文标题:Failed to resolve: support-core-

          本文链接:https://www.haomeiwen.com/subject/rksuxqtx.html