无法解决':app @ debug / compileClasspath':无法解析com.android.support:design:26.1.0

时间:2018-03-19 08:51:57

标签: android android-studio android-gradle android-gradle-3.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' }

2 个答案:

答案 0 :(得分:1)

:app@debugAndroidTest/compileClasspath': Could not resolve com.android.support:design:26.1.0 Maven2当Android Studio无法下载该依赖项时,通常会发生此问题。这可能是由于this之类的很多原因造成的,或者就像我的情况{公司中阻止了{1}}和jcenter个存储库。那你可以做什么就像检查这个文件夹

  

Android的SDK \额外\机器人\ m2repository \ COM \机器人\支持\程序兼容性-V7

并检查SDK中可用的所有版本,使用其中一个版本,因此,而不是从repository studio下载将从SDK中获取该库。

答案 1 :(得分:0)

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

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