Android依赖项错误

时间:2017-08-29 17:29:13

标签: android build.gradle

我在build.gradle中有以下代码

apply plugin: 'com.android.application'

android {
    compileSdkVersion 26
    buildToolsVersion "26.0.1"
    defaultConfig {
        applicationId "com.example.myapp.myapplication"
        minSdkVersion 14
        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 {
    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:26.0.0'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    compile 'com.thefinestartist:finestwebview:1.2.7'
    testCompile 'junit:junit:4.12'
}
allprojects {
    repositories {
        jcenter()
        maven {
            url 'https://maven.google.com'
        }
    }
}

但我得到以下一行的错误

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

enter image description here

enter image description here

任何人都可以帮我解决这个问题吗?

3 个答案:

答案 0 :(得分:1)

  

问题在于   编译'com.thefinestartist:finestwebview:1.2.7'检查下面的屏幕截图

problem is with  compile 'com.thefinestartist:finestwebview:1.2.7'

解决方案:

https://stackoverflow.com/a/25736483/793943

答案 1 :(得分:0)

这意味着您的构建版本是26.0.1,但是您的支持gradle版本是26.0.0。将支持appcompat版本从26.0.0更改为26.0.1并进行构建。

答案 2 :(得分:0)

尝试将以下代码添加到项目级build.gradle文件中,它应该可以正常工作

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