导入模块时无法合并dex

时间:2018-02-28 08:40:41

标签: android android-gradle kotlin kotlin-android-extensions

我知道这方面有很多问题,但我尝试了大多数问题的解决方案,而且都没有。 我有一个应用程序,我已导入模块。当我尝试运行该应用时,我得到无法合并dex 异常。

build.gradle(应用模块)

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'

android {
compileSdkVersion 27
defaultConfig {
    applicationId "com.meditab.imspatient"
    minSdkVersion 21
    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 {
implementation fileTree(dir: 'libs', include: ['*.jar'])
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'

implementation 'com.android.support.constraint:constraint-layout:1.0.2' // Constraint layout
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" // Kotlin

// Support libraries
implementation "com.android.support:appcompat-v7:$appcompat_version"
implementation "com.android.support:support-v4:$appcompat_version"

compile project(path: ':commonutils')
 }

build.gradel(导入模块)

 apply plugin: 'com.android.library'

android {
compileSdkVersion 27
buildToolsVersion '27.0.2'

defaultConfig {
    minSdkVersion 21
    targetSdkVersion 27
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}

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

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])

compile 'org.jetbrains:annotations-java5:15.0'
compile 'com.jakewharton:butterknife:8.8.1'

// Support libraries
compile "com.android.support:appcompat-v7:$appcompat_version"
compile "com.android.support:design:$appcompat_version"

// Rx related libraries
compile 'io.reactivex:rxjava:1.1.1'
compile 'io.reactivex:rxandroid:1.1.0'
//compile 'com.netflix.rxjava:rxjava-core:0.+'
// Networking related libraries
compile 'com.squareup.okhttp3:logging-interceptor:3.8.1'
compile 'com.squareup.retrofit2:retrofit:2.3.0'
compile 'com.squareup.retrofit2:converter-jackson:2.0.2'
compile 'com.squareup.retrofit2:adapter-rxjava:2.0.2'
compile 'com.fasterxml.jackson.core:jackson-databind:2.7.2'

compile 'com.google.firebase:firebase-core:11.8.0'
compile 'com.google.firebase:firebase-messaging:11.8.0'
compile 'com.google.android.gms:play-services-base:11.8.0'
compile 'com.google.android.gms:play-services-location:11.8.0'
compile 'com.estimote:sdk:0.10.+@aar'
}

build.gradle(项目级别)

buildscript {
ext.kotlin_version = '1.2.21'
ext.appcompat_version = '27.0.2'
repositories {
    google()
    jcenter()
}
dependencies {
    classpath 'com.android.tools.build:gradle:3.0.1'
    classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

    // Needed for the common utils module
    classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
}
}

allprojects {
repositories {
    google()
    jcenter()
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}

我尝试删除.gradle文件夹,清理项目并重建它。什么都行不通。我还尝试在导入模块的build.gradle中使用实现而不是编译。 任何帮助将不胜感激。 提前谢谢。

3 个答案:

答案 0 :(得分:0)

我不是百分百肯定,但我认为您需要在应用中启用multidex。请检查此链接:Enable Multidex

试着帮忙。

答案 1 :(得分:0)

在我以前的项目中有多个模块如果我启用了Proguard我遇到了同样的错误。 这个错误令人沮丧,在我的情况下,我检查后解决了问题  项目依赖图(Using gradle to find dependency tree可以帮助您找到依赖项) 在我的情况下播放服务的不同版本

答案 2 :(得分:0)

似乎您声明依赖的2个库导致重复条目。

问题是您不能拥有由2个不同库声明的完全相同的类或注释。如果它们是同一个库的不同版本,那么可能会选择具有最高版本的库,但如果它们是完全不同的库,则无法确定dex文件中应包含哪个实现。

第一个是:

'com.netflix.rxjava:rxjava-core:0.+'

你为什么要用这个?您已经定义了对RxJava('io.reactivex:rxjava:1.1.1')的依赖关系,它们可能有许多共同的类,我想到的第一个类是rx.Observable。该回购的最新更新是2014年11月,超过3年前。除了冲突之外,这个事实本身应该是不使用它的一个很好的理由。

第二个问题是:

'org.jetbrains:annotations-java5:15.0'

我想你为了获得org.jetbrains.annotations.Nullable而导入了这个,这已经在你的项目中可用了,因为Kotlin stdlib在org.jetbrains:annotations上有一个依赖,它也声明了它。因此,冲突。

删除这两个依赖关系,你很可能实际上并不需要它们,并且项目会编译。