2016-10-09 4 views
-1

Ich habe einen Fehler in gradle Build:Fehler: TransformException: java.util.zip.ZipException: Eintrag duplizieren: android/support/v4/app/TaskStackBuilderHoneycomb.class

Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'. 

com.android .build.api.transform.TransformException: java.util.zip.ZipException: Eintrag duplizieren: android/support/v4/app/TaskStackBuilderHoneycomb.class

error

in meiner app Abhängigkeiten: dependencies in gradle build

dependencies { 
compile fileTree(include: ['*.jar'], dir: 'libs') 
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2',{ 
}) 
//testCompile 'junit:junit:4.12' 
compile 'com.android.support:appcompat-v7:24.2.1' 
compile 'com.android.support:design:24.2.1' 
compile 'de.hdodenhof:circleimageview:1.3.0' 
androidTestCompile 'com.android.support:support-annotations:24.2.1' 
//compile 'com.google.android.gms:play-services-maps:9.6.1' 
compile files('libs/universal-image-loader-1.8.4-with-sources.jar') 
compile files('libs/org.apache.http.legacy.jar') 
compile 'com.android.support:support-vector-drawable:24.2.1' 
compile 'com.android.support:multidex:1.0.0' 
//compile 'com.android.support:support-v4:24.2.1' 
compile 'com.android.support:support-v13:24.2.1' 
//compile files('libs/android-support-v4.jar')} 

mir bitte helfen ..

+0

Verwenden Sie keine Gläser. Verwenden Sie die Abhängigkeiten von Google Tabellen. –

Antwort

0

Try compile files (libs/appcompat-v4) Abhängigkeit von Ihrem build.gradle Datei zu entfernen, da es sich um eine doppelte Abhängigkeit ist.

+0

ich verwende Kompilierdateien ('libs/android-support-v4.jar') –

Verwandte Themen