当前位置: 首页 > 知识库问答 >
问题:

无法解析“”的依赖项:app@debug/compileClasspath':无法解析com.Android支持:设计:26.1.0

苏墨竹
2023-03-14

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

无法解析<代码>'的依赖项:app@debugAndroidTest/compileClasspath':无法解析com.Android支持:设计: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个答案

鲍高扬
2023-03-14

试着添加你的谷歌maven repo。它对我有用。##

repositories {
    jcenter()
    maven {
        url "https://maven.google.com"
    }
}
赵嘉纳
2023-03-14

无法解决:app@debugAndroidTest /compileClasspath的依赖关系:无法解决com.android.support: Design: 26.1.0此问题通常在Android Studio无法下载该依赖关系时发生。这可能是由于许多像这样的原因,或者像在我的情况下,在公司中阻止了Maven2jcenter存储库。所以你能做的就是检查这个文件夹

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

并检查SDK中的所有版本都可供您使用,请使用其中的任何一个版本,因此,将从SDK中获取库,而不是从存储库工作室下载。

 类似资料: