错误:程序类型已存在:org.hamcrest.CoreMatchers

时间:2018-09-05 14:40:58

标签: android android-studio android-studio-3.0

构建应用程序时,出现以下错误:程序类型已存在:org.hamcrest.CoreMatchers。 1:30 AM Gradle同步失败(6s 290ms)

这是我的build.gradle文件:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.ercess.ercess_app"
        minSdkVersion 17
        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'
        }
    }

    packagingOptions {
        exclude 'META-INF/DEPENDENCIES'
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:28.0.0-rc01'
    implementation 'com.android.support.constraint:constraint-layout:1.1.2'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation 'com.squareup.picasso:picasso:2.71828'
    implementation group: 'com.android.support', name: 'design', version: '28.0.0-rc01'
    implementation 'com.basgeekball:awesome-validation:4.2'

    implementation 'org.apache.httpcomponents:httpclient:4.4-alpha1'

    implementation group: 'com.googlecode.json-simple', name: 'json-simple', version: '1.1.1'
}

1 个答案:

答案 0 :(得分:0)

由于运行时类路径包含org.hamcrest.CoreMatchers的多个定义,因此从D8中收到此错误。

有关解决方法,请查看问题跟踪器的答案:https://issuetracker.google.com/issues/77499230

  

在Android Studio中同步您的项目,进入“导航”->“类”,确保选中“包括非项目类”复选框,然后键入“ org.intellij.lang.annotations.Identifier”。 Android Studio应该向您显示包含此类型的jar。如果您熟悉排除传递依赖项,则排除包含org.intellij.lang.annotations的Maven依赖项之一。标识符应该可以解决您的问题。

在您的情况下,请使用org.hamcrest.CoreMatchers代替org.intellij.lang.annotations.Identifier。