Could not find com.android.support:appcompat-v7:23.1.1 问题解决


allprojects {
    repositories {
        jcenter()
        maven { url "https://maven.google.com" }//添加这个就可以
    }
}

在build.gradle中

其次如有其他错误

一般是gradle版本需要更新例如

dependencies {
        classpath 'com.android.tools.build:gradle:7.0.2' #这个版本

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }

你可能感兴趣的:(android,appcompat)