6

Właśnie zaktualizowałem moją bibliotekę pomocy technicznej z 23.0.0 na 23.1.0 i teraz, kiedy buduję projekt, dostać ten błąd:java.util.zip.ZipException: duplikat wpisu: android/support/v7/graphics/drawable/DrawableUtils.class

Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'. 
> com.android.build.transform.api.TransformException: java.util.zip.ZipException: duplicate entry: android/support/v7/graphics/drawable/DrawableUtils.class 

Tu jest mój poziom aplikacja build.gradle:

buildscript { 
    repositories { 
     maven { url 'https://maven.fabric.io/public' } 
    } 

    dependencies { 
     classpath 'io.fabric.tools:gradle:1.+' 
    } 
} 


apply plugin: 'com.android.application' 
apply plugin: 'io.fabric' 
apply plugin: 'com.google.gms.google-services' 

android { 
    compileSdkVersion 23 
    buildToolsVersion "23" 
    defaultConfig { 
     applicationId 'com.galleri5.android' 
     multiDexEnabled true 
     minSdkVersion 16 
     targetSdkVersion 23 
     versionCode 6 
     versionName "0.6" 
    } 
    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
     } 
    } 
} 


repositories { 
    mavenCentral() 
    mavenLocal() 
    jcenter() 
    maven { url 'https://maven.fabric.io/public' } 
} 

dependencies { 
    compile fileTree(include: ['*.jar'], dir: 'libs') 
    compile 'com.android.support:appcompat-v7:23.1.0' 
    compile 'com.android.support:support-v4:23.1.0' 
    compile 'com.squareup.picasso:picasso:2.5.2' 
    compile 'com.android.support:design:23.1.0' 
    compile 'com.facebook.android:facebook-android-sdk:4.3.0' 
    compile 'com.etsy.android.grid:library:1.0.5' 
    compile 'com.squareup.okhttp:okhttp:2.4.0' 
    compile 'com.squareup.okhttp:okhttp-urlconnection:2.4.0' 
    compile 'com.android.support:recyclerview-v7:23.1.0' 
    compile 'com.android.support:cardview-v7:23.1.0' 
    compile 'com.squareup.retrofit:retrofit:1.9.0' 
    compile 'com.jakewharton:butterknife:7.0.1' 
    compile 'com.github.clans:fab:1.6.1' 
    compile 'uk.co.chrisjenx:calligraphy:2.1.0' 
    compile 'com.google.android.gms:play-services-analytics:8.1.0' 
    compile('com.crashlytics.sdk.android:crashlytics:[email protected]') { 
     transitive = true; 
    } 
} 

Co ja otrzymuję ten błąd? Chcę korzystać z najnowszej wersji biblioteki pomocy. Jak mogę rozwiązać ten problem? Przeczytałem wątek this SO, a rozwiązanie nie działało. Dało to więcej błędów w mojej bazie kodów. Ponadto nie używam plików JAR. Każda pomoc będzie bardzo ceniona. Dzięki.

+1

Czyszczenie projekt powinien pomóc i ustawić 'compileSdkVersion 23 buildToolsVersion "23.0.1"' –

+0

próbowałem tego. wciąż otrzymuję ten sam błąd. –

+0

W terminalu wykonaj w głównym folderze projektu: ./gradlew clean http://stackoverflow.com/questions/33209631/errorexecution-failed-for-task-apptransformclasseswithjarmergingfordebug http://stackoverflow.com/questions/32968171/android- apptransformclasseswithjarmergingfordebug-failed-zipexception-dupli –

Odpowiedz

0

Trzeba dodać wykluczyć grupy: na V7 wsparcia jak ten:

compile ('com.android.support:appcompat-v7:19.+') { 
    exclude group: 'org.apache.httpcomponents', module: 'httpclient' 
    exclude group: 'com.android.support' 
} 
8

wpadłem na ten sam problem w moim projekcie React Native Android, a to, co sprawiło, że praca dla mnie:

cd android 

./gradlew clean 
Powiązane problemy