无法解析 ':app@debug/compileClasspath' 的依赖关系:无法解析 com.android.support:design:26.1.0

Unable to resolve dependency for ':app@debug/compileClasspath': Could not resolve com.android.support:design:26.1.0

我在同步 gradle 项目时遇到此错误。

无法解决 ':app@debugAndroidTest/compileClasspath': Could not resolve com.android.support:design:26.1.0

的依赖关系

谁能帮帮我?

apply plugin: 'com.android.application' android {
compileSdkVersion 26
defaultConfig {
    applicationId "com.example.phaniteja.sample1"
    minSdkVersion 15
    targetSdkVersion 26
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}  }   dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support:design:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1' }

Unable to resolve dependency for :app@debugAndroidTest/compileClasspath': Could not resolve com.android.support:design:26.1.0 此问题通常发生在 Android Studio 无法下载 dependency.That 可能是由于 等多种原因或者像我的情况一样,Maven2jcenter 存储库在 Company 中被阻止。那么你能做的就是检查这个文件夹

Android-sdk\extras\android\m2repository\com\android\support\appcompat-v7

并检查您在 SDK 中可以使用哪些所有版本,使用其中一个版本,因此不是从存储库下载,studio 将从 SDK 中获取该库。

尝试添加您的 Google maven 存储库。它对我有用。##

repositories {
    jcenter()
    maven {
        url "https://maven.google.com"
    }
}