无法解决:com.android.support:appcompat-v7.27.+

时间:2018-06-16 17:30:08

标签: android android-studio

我正在尝试使用Nougat 7.0在Android Studio中创建一个新项目。

但是,一旦我打开项目,我就会收到以下Gradle错误:

  

无法解决:com.android.support:appcompat-v7.27。+

我尝试了一些在线解决方案,但没有一个能为我工作。

以下是Module(app)build.gradle:

apply plugin: 'com.android.application'

android {
compileSdkVersion 27
buildToolsVersion "25.0.2"
defaultConfig {
    applicationId "damo.com.testproject"
    minSdkVersion 23
    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 {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', 
{
    exclude group: 'com.android.support', module: 'support-annotations'
})

compile 'com.android.support:appcompat-v7:27.+'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
}

我需要做出哪些更改才能解决此问题?

3 个答案:

答案 0 :(得分:0)

替换为

com.android.support:support-compat:27.1.1

答案 1 :(得分:0)

  

未找到Gradle DSL方法:'google()'

compileSdkVersion 27
buildToolsVersion "27.0.3"

确保在 google() PROJECT LEVEL部分添加 build.gradle

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

    }
}

如果设置 PROPER 版本会更好。

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

<强> FYI

使用 implementation 代替 compile 。即

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

之后, Clean-Rebuild-Run

答案 2 :(得分:0)

buildToolsVersion&#34; 25.0.2&#34; 将其更改为&#34; 27.0.0&#34;  一切都会正确