为什么我添加依赖项时android studio会给出错误?

时间:2018-12-29 06:20:04

标签: java android android-studio gradle

我正在构建人脸检测Android应用。当我在app/build.gradle中添加依赖项时,它给我一个错误。这是我的gradle文件:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    buildToolsVersion "28.0.3"
    defaultConfig {
        applicationId "com.example.android.emojify"
        minSdkVersion 15
        targetSdkVersion 28
        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'])
    androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support ', module: 'support-annotations'
    })
    implementation 'com.android.support:design:28.0.0'
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.google.android.gms:play-services-vision:10.2.0'
    testImplementation 'junit:junit:4.12'
}

以下行中报告了错误:

implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support:appcompat-v7:28.0.0'

2 个答案:

答案 0 :(得分:0)

向我们显示您的错误的屏幕截图,或将错误的格式设置为便于阅读,只需单击代码按钮并将其粘贴。 编辑:谢谢:)

我认为您应该在gradle.build中进行任何更改后使用refresh gradle,并且可能会收到此错误,因为您的构建工具sdk为28.0.3,并且您希望使用sdk 28.0.0中的工具,只需将compile sdk更改为28.0 .0,然后点击操作栏上的同步gradle。

答案 1 :(得分:0)

您的buildToolVersion大于您的设计和appcompat-v7。
尝试更改,

implementation 'com.android.support:design:28.0.3' //or greater than 28.0.3  
implementation 'com.android.support:appcompat-v7:28.0.3' //or greater than 28.0.3  

连接到互联网,然后构建您的项目。问题将会解决。