web-dev-qa-db-ja.com

Android Gradle DexException:複数のdexファイルがLorg / hamcrest / Descriptionを定義します

com.Android.dex.DexException:複数のdexファイルがLorg/hamcrest/Descriptionを定義しています

アプリケーションでAndroid StudioまたはGradleコマンドラインを介してデバッグビルド/テストを実行しようとしたときに発生します。

リリースビルド(テストなし)は問題なく動作しますが、テストが含まれるとすぐ(hamcrestはテストライブラリ)、ビルドは上記のエラーで失敗します。

モジュールの依存関係を確認しましたが、gradle -q dependencyで裏付けられる重複する要件はありません。


プロジェクト設定.gradle

include ':[library module]'
include ':[main module]'

Project build.gradle

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.Android.tools.build:gradle:0.9.+'
        classpath 'org.robolectric.gradle:gradle-Android-test-plugin:0.9.+'
    }
}

allprojects {
    repositories {
        mavenCentral()
    }
}

[ライブラリモジュール] build.gradle

apply plugin: 'Android-library'

Android {
    compileSdkVersion 19
    buildToolsVersion "19.0.0"

    defaultConfig {
        minSdkVersion 14
        targetSdkVersion 19
    }

    packagingOptions {
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/NOTICE.txt'
    }
}

dependencies {
    compile 'com.google.zxing:core:3.0.+'
    compile 'com.bugsnag:bugsnag-Android:2.1.1+'
}

[メインモジュール] build.gradle

apply plugin: 'Android'

Android {
    signingConfigs {
    release {
        [...]
    }
}

    sourceSets {
        main {
            manifest.srcFile 'src/main/AndroidManifest.xml'
            res.srcDirs = ['src/main/res']
        }
        androidTest {
            setRoot('src/test')
        }
        instrumentTest {
        }
    }

    compileSdkVersion 19
    buildToolsVersion '19.0.0'

    defaultConfig {
        minSdkVersion 14
        targetSdkVersion 19
        testPackageName "[main.packageName].tests"
    }

    buildTypes {
        release {
            runProguard false
            proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.txt'
        }
    }

    packagingOptions {
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/NOTICE.txt'
    }
}

apply plugin: 'Android-test'



androidTest {
    // configure the set of classes for JUnit tests
    include '**/*Test.class'

    // configure max heap size of the test JVM
    maxHeapSize = "2048m"
}

repositories {
    maven { url 'https://repo.commonsware.com.s3.amazonaws.com' }
    maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
}

dependencies {
    androidTestCompile 'junit:junit:4.10'
    androidTestCompile 'org.robolectric:robolectric:2.3-SNAPSHOT'
    androidTestCompile 'com.squareup:fest-Android:1.0.+'
    compile project(':[library module]')
    compile 'com.github.gabrielemariotti.changeloglib:library:1.4.+'
    compile 'com.google.code.gson:gson:2.2.4'
    compile 'com.google.Android.gms:play-services:+'
    compile 'com.Android.support:appcompat-v7:+'
    compile ('de.keyboardsurfer.Android.widget:crouton:1.8.+') {
        exclude group: 'com.google.Android', module: 'support-v4'
    }
    compile files('libs/CWAC-LoaderEx.jar')
    compile 'com.squareup.okhttp:okhttp:1.5.+'
    compile 'com.octo.Android.robospice:robospice:1.4.11'
    compile 'com.octo.Android.robospice:robospice-cache:1.4.11'
    compile 'com.octo.Android.robospice:robospice-retrofit:1.4.11'
    compile 'com.commonsware.cwac:security:0.1.+'
    compile 'com.readystatesoftware.sqliteasset:sqliteassethelper:+'
}
28
saywhatnow

Robolectric 2.3はJUnit 4.8.1(バージョン明示)に依存しています。 JUnit 4.10(バージョン明示)をインポートしています。 Hamcrestは、おそらくdexが窒息している多くの重複の最初のものです-JUnit要件のバージョンを4.8+に変更してみてください(またはJUnitをRobolectric依存関係から除外してください)。

10
tophyr

Android Studioで「説明」という正確なクラスを探してエラーを解決しました。3つのjarに存在することが判明しました。1つはjunitから、もう1つは直接依存関係から、もう1つはmockitoから。

enter image description here

通常の依存関係の代わりに、junitにはjunit jarにHamcrestクラスが含まれていることがわかります。

enter image description here

この問題を解決するには、junitの代わりにjunit-depを含めます。

だから変える

androidTestCompile( 'junit:junit:4.8。+')

androidTestCompile( 'junit:junit-dep:4.8。+')

Mockitoにも同じ問題/解決策があります:mockito-all.1.9.5.jarの代わりにmockito-core.1.9.5.jarを使用してください

39
userM1433372

私のプロジェクトは json-simpleバージョン1.1.1 に依存していましたが、何らかの理由でjunitバージョン4.1.0自体に Hamcrest への依存。私が走ったならこれを見ることができましたgradle dependenciesまたは json-simple POM.xml を検査する。

// compile - Classpath for compiling the main sources.
    \--- com.googlecode.json-simple:json-simple:1.1.1
         \--- junit:junit:4.10
              \--- org.hamcrest:hamcrest-core:1.1

json-simpleからjunitアーティファクトを除外すると、ビルドできました。

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile ('com.googlecode.json-simple:json-simple:1.1.1') {
        exclude module: 'junit'
    }
}
27
chrisjleu

除外モジュール:junit

json:simple依存関係を使用している場合

0
stevebaros