美文网首页
Android Studio appcompat-v7:27.0

Android Studio appcompat-v7:27.0

作者: 吃惊馆长 | 来源:发表于2017-12-11 22:16 被阅读0次

    出现编译问题
    Failed to resolve: com.android.support:appcompat-v7:27.0.0 之类的问题
    解决方法
    在根目录下的build.gradle中
    android studio 版本<3.0

    allprojects {
        repositories {
            jcenter()
            maven {                                  // <-- 添加这个
                url 'https://maven.google.com/'
                name 'Google'
            }
        }
    }
    

    android studio 版本3.0以后

    allprojects {
        repositories {
            jcenter()
            google()                                  // <-- 添加这个
        }
    }
    

    相关文章

      网友评论

          本文标题:Android Studio appcompat-v7:27.0

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