使用 Parse 和 Multidex 复制条目 [英] Duplicate entry using Parse and Multidex

查看:41
本文介绍了使用 Parse 和 Multidex 复制条目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的项目是一个使用 Parse 的聊天应用.添加其他依赖后,这个问题开始出现:

My project is a Chat app that uses Parse. After added other dependencies, this problem started appearing:

错误:任务:app:dexDebug"的执行失败.com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command '/usr/lib/jvm/java-7-oracle/bin/java'' 以非零退出完成值 2

Error:Execution failed for task ':app:dexDebug'. com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command '/usr/lib/jvm/java-7-oracle/bin/java'' finished with non-zero exit value 2

在 StackOverflow 中搜索这里,有人告诉我这可能是 Android 的 65K 限制.所以,为了解决我遵循以下步骤:

Searching here in StackOverflow, some folks told me that it could be the 65K limit from Android. So, to solve I followed the steps below:

1 - 添加多索引

DefaultConfig {
         multiDexEnabled true
}

compile 'com.android.support:multidex:1.0.0'

https://developer.android.com/tools/building/multidex.html

2 - 在 Android Gradle 设置中启用 Jumbo 模式

2 - Enable Jumbo Mode in Android Gradle Settings

 dexOptions {
        jumboMode = true
 }

我清理了项目并运行了 gradle 构建.它没有产生任何错误.伟大的!但是当我单击运行应用程序"时,它会在下面生成此错误.

I cleaned the project and ran the gradle build. It did not generate any errors. Great! But when I click "Run app" it generates this error below.

错误:任务'执行失败:应用程序:packageAllDebugClassesForMultiDex'.> Java.util.zip.ZipException:重复条目:bolts/AggregateException.class

Error: Execution failed for task ': app: packageAllDebugClassesForMultiDex'. > Java.util.zip.ZipException: duplicate entry: bolts / AggregateException.class

如果我删除依赖项 'com.parse.bolts: bolts-android: 1. +' ,运行应用程序"可以工作,但我不能没有 Parse 的依赖项.

If I remove the dependency 'com.parse.bolts: bolts-android: 1. +' the "Run app" works, but I can not do without the dependency of Parse.

这是我的 Gradle 构建脚本:

This is my Gradle build script:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 22
    buildToolsVersion "22.0.1"

    defaultConfig {
        applicationId "br.com.triangulum.mink"
        minSdkVersion 18
        targetSdkVersion 22
        versionCode 1
        versionName "1.0"
        multiDexEnabled true

    }
    buildTypes {
        release {

            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    dexOptions {
        jumboMode = true
    }
}
repositories {
    mavenCentral()
}

dependencies {
    compile 'com.parse.bolts:bolts-android:1.+'
    compile('com.android.support:multidex:1.0.0') {
        exclude group: 'com.parse.bolts',
                module: 'bolts-android'
    }
    androidTestCompile 'com.android.support:multidex-instrumentation:1.0.0'
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile fileTree(dir: 'libs', include: 'Parse*.jar')
    compile project('libraries:httprequest')
    compile project('libraries:cameralibrary')
    compile project('libraries:bgarefreshlayout')
    compile 'com.android.support:appcompat-v7:+'
    compile 'com.android.support:recyclerview-v7:+'
    compile 'com.android.support:cardview-v7:+'
    compile 'com.android.support:palette-v7:+'
    compile 'com.android.support:design:+'
    compile 'com.daimajia.swipelayout:library:1.2.0@aar'
    compile 'com.google.android.gms:play-services:6.5.87'
    compile 'com.google.code.gson:gson:2.2.+'
    compile 'com.squareup.picasso:picasso:2.4.0'
    compile 'com.jakewharton:butterknife:7.0.1'
    compile 'com.afollestad:material-dialogs:0.7.4.0'
    compile 'com.getbase:floatingactionbutton:1.10.0'
    compile 'com.facebook.android:facebook-android-sdk:4.1.0'
    compile 'de.greenrobot:eventbus:2.4.+'
    compile'com.edmodo:cropper:1.0.+'
    compile 'com.github.ksoichiro:android-observablescrollview:+'
    compile 'com.etsy.android.grid:library:1.0.5'
    compile('com.mikepenz:actionitembadge:3.0.2@aar') {
        transitive = true
    }
    compile 'com.daimajia.swipelayout:library:1.2.0@aar'
    compile 'com.android.support:multidex:1.0.+'
}

推荐答案

尝试改变这个:

compile('com.android.support:multidex:1.0.0') {
        exclude group: 'com.parse.bolts',
                module: 'bolts-android'
    }

为此:

compile('com.android.support:multidex:1.0.0');

粗体模块有时用于修复重复的 dexLibs

the bolds module is used sometimes to fix Duplicated dexLibs

问候

这篇关于使用 Parse 和 Multidex 复制条目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆