添加multiDexEnabled之后的NoClassDef

时间:2015-09-23 08:54:55

标签: android android-multidex

嘿,我添加了大量的文件,我开始得到一个大型的android项目

 UNEXPECTED TOP-LEVEL EXCEPTION:
com.android.dex.DexException: Multiple dex files define

所以我搜索了我的问题,我发现一个解决方案是将此属性添加到Gradle文件中但是在我成功添加项目构建之后

但是当我运行项目时,我的部分片段和活动出现NoClassDef错误

这是我的傻瓜

    apply plugin: 'com.android.application'

android {
    compileSdkVersion 22
    buildToolsVersion "22.0.1"
    defaultConfig {
        applicationId "cloudappers.com.rta_ca"
        minSdkVersion 17
        targetSdkVersion 22
        versionCode 1
        versionName "1.0"

        multiDexEnabled = true

    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    dexOptions {
        preDexLibraries = false
    }
}
allprojects {
    repositories {
        mavenCentral()
        jcenter()
        maven { url 'https://github.com/leonardocardoso/mvn-repo/raw/master/maven-deploy' }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile project(':bounceScroller')
    compile project(':SwipeMenu')
    compile project(':indicator')
    compile files('libs/android-async-http.jar')
    compile('com.weiwangcn.betterspinner:library:1.1.0') {
        exclude group: 'com.android.support', module: 'appcompat-v7'
    }
    compile files('libs/org.apache.commons.io.jar')
    compile 'com.android.support:appcompat-v7:22.0.0'
    compile 'com.nineoldandroids:library:2.4.0'
    compile 'com.daimajia.easing:library:1.0.1@aar'
    compile 'com.daimajia.androidanimations:library:1.1.3@aar'
    compile 'com.edmodo:cropper:1.0.1'
    compile 'com.github.bumptech.glide:glide:3.6.1'
    compile 'com.leocardz:aelv:1.1@aar'
    compile 'com.google.android.gms:play-services:7.8.0'
    compile 'com.google.android.gms:play-services-ads:7.8.0'
    compile 'com.google.android.gms:play-services-identity:7.8.0'
    compile 'com.google.android.gms:play-services-gcm:7.8.0'
    compile 'com.android.support:multidex:1.0.0'


}

它正在开发Android 5,但不是4.4和之前的

有任何帮助吗?

1 个答案:

答案 0 :(得分:1)

从你的gradle这里:

1. compile fileTree(dir: 'libs', include: ['*.jar'])
2. compile files('libs/android-async-http.jar')   
3. compile files('libs/org.apache.commons.io.jar')

现在,如果您使用第1行,则无需添加第2行和第2行。 3。

原因是'compile fileTree(dir: 'libs', include: ['*.jar'])'包含libs文件夹中所有要gradle的jar文件..

删除第2行& 3。

感谢。!!