无法解决:com.android.support:appcompat-v7:27.+(依赖性错误)

时间:2017-11-07 18:12:44

标签: android android-studio android-gradle

我在Android工作室遇到此问题。

Error:Failed to resolve: com.android.support:appcompat-v7:27.+
<a href="install.m2.repo">Install Repository and sync project</a><br><a href="open.dependency.in.project.structure">Show in Project Structure 
dialog</a>

我的Android Studio充满了错误,android studio无法识别库。整个屏幕看起来像这样。

image

这是我的Gradle代码:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 27
    buildToolsVersion "27.0.1"

    defaultConfig {
        applicationId "com.example.hp.temp"
        minSdkVersion 21
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:27.+'
}

2 个答案:

答案 0 :(得分:113)

查找根build.gradle文件并在allprojects标记内添加google maven repo

repositories {
        mavenLocal()
        mavenCentral()
        maven {                                  // <-- Add this
            url 'https://maven.google.com/' 
            name 'Google'
        }
    } 

最好使用特定版本而不是变量版本

compile 'com.android.support:appcompat-v7:27.0.0'

如果您使用的是Gradle 3.0.0或更高版本的Android插件

repositories {
      mavenLocal()
      mavenCentral()
      google()        //---> Add this
} 

以这种方式注入依赖:

implementation 'com.android.support:appcompat-v7:27.0.0'

答案 1 :(得分:55)

如果您使用 Android Studio 3.0或更高版本,请确保您的项目 build.gradle 的内容应与 -

相似
buildscript {                 
    repositories {
        google()
        jcenter()
    }
    dependencies {            
        classpath 'com.android.tools.build:gradle:3.0.1'

    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

注意 - 位置确实很重要 jcenter()

之前添加 google()

对于以下Android Studio 3.0 ,从支持库26。+ 开始,您的项目 build.gradle 必须如下所示 -

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

请查看以下链接了解详情 -

1 - Building Android Apps

2 - Add Build Dependencies

3 - Configure Your Build