2015-11-18 53 views
1

我在Android Studio中遇到了一個奇怪的問題。一切似乎工作正常,直到今天后添加新文件並作出一些更新build.gradleAndroid Studio - 任務執行失敗packageAllDebugClassesForMultiDex重複條目

我看到錯誤消息如下:

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

你知道,如果有低於我的build.gradle任何問題?新行在「新增附件下面添加該行」。我還將multiDexEnabled設置爲true。

apply plugin: 'com.android.application' 
android { 
    compileSdkVersion 23 
    buildToolsVersion '23.0.1' 
    useLibrary 'org.apache.http.legacy' 

    defaultConfig { 
     applicationId "com.my.app" 
     minSdkVersion 14 
     targetSdkVersion 21 
     multiDexEnabled true 
     compileOptions { 
      sourceCompatibility JavaVersion.VERSION_1_7 
      targetCompatibility JavaVersion.VERSION_1_7 
     } 
    } 
    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' 
     } 
    } 
    //useLibrary 'org.apache.http.legacy' 
} 

dependencies { 
    compile files('libs/aspectjrt-1.8.2.jar') 
    compile files('libs/bolts-android-1.2.1.jar') 
    compile files('libs/isoparser-1.0-RC-27.jar') 
    compile files('libs/multiscreen-android-1.1.11.jar') 
    compile files('libs/picasso-2.5.2.jar') 
    compile files('libs/volley.jar') 
    compile 'com.facebook.android:facebook-android-sdk:4.5.0' 
    compile 'com.android.support:appcompat-v7:23.0.1' 
    compile 'com.android.support:support-v13:+' 

    /* NEW DEPENDENCIES BELOW THIS LINE */ 
    compile 'com.android.support:design:23.0.1' 
    compile 'com.android.support:cardview-v7:23.1.0' 
    compile 'com.github.bumptech.glide:glide:3.6.0' 
    compile 'de.hdodenhof:circleimageview:1.3.0' 

    // Used to optimize rendering of list views 
    // compile 'com.android.support:recyclerview-v7:23.1.0' 
    compile 'uk.co.chrisjenx:calligraphy:2.1.0' 
    //compile 'com.squareup.picasso:picasso:2.5.2' 

    compile 'com.google.android.gms:play-services:7.8.0' 
    //compile 'com.mcxiaoke.volley:library-aar:1.0.0' 
    compile 'com.google.android.gms:play-services-plus:7.8.0' 
    compile 'com.google.android.gms:play-services-wallet:7.8.0' 
} 

回答

2
compile files('libs/bolts-android-1.2.1.jar') 

你加哪個包?

它說你在2庫中有螺栓/ AggregateException.class。

試着找哪個罐子包括AggregateException

+0

謝謝!就是這樣。我希望它更聰明,並告訴我要擺脫什麼。那可能嗎? – codeshark

+0

嘗試瞭解錯誤日誌說的是什麼!如果它告訴你要清除什麼,錯誤日誌將太多以至於無法讀取。 –

0

在我來說,我剛剛刪除的螺栓jar文件,它完美地工作!

相關問題