android studio无法解析com.android.support:design:27.1.0

时间:2018-04-05 08:37:07

标签: android android-studio android-gradle

好吧,我今天遇到了关于gradle sync的问题 问题是这样的:

  

无法解析':app @ debug / compileClasspath'的依赖关系:可以   不解析com.android.support:design:27.1.0。

但实际上我在app/build.gradle依赖关系中添加依赖关系,比如

dependencies {
  ...
  implementation 'com.android.support:appcompat-v7:27.1.0'
  ...
  implementation 'com.android.support:design:27.1.0'
  ...
} 

我没有打开gradle离线模式。它连接到互联网。但似乎没有自动下载依赖。还有像这样的其他依赖

implementation 'de.hdodenhof:circleimageview:2.2.0'

我无法解决它。每个答案都有帮助。 详细的gradle属性是这样的。

{
compileSdkVersion 27
defaultConfig {
    applicationId "com.example.lqs2.materialtest"
    minSdkVersion 15
    targetSdkVersion 27
    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:27.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.android.support:design:27.1.0'
implementation 'com.android.support:recyclerview-v7:24.2.1'
implementation 'com.android.support:cardview-v7:24.2.1'
implementation 'de.hdodenhof:circleimageview:2.2.0'
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 :(得分:0)

您的存储库是否正确?请验证是否:

repositories {
    google()
    jcenter()
}

在项目的Build.Gradle中(注意:项目的Build.Gradle,而不是模块)。

答案 1 :(得分:0)

存储库的顺序似乎很重要。尝试放置" google"之前" jcenter"