2017-02-27 4 views
0

org.apache.http.legacy 라이브러리를 사용하는 (Janrain:Jump) 라이브러리 프로젝트가 있습니다. Apache 공유 종속성이 gradle에서 제외되지 않았습니다. Android

com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: org/apache/commons/codec/StringEncoderComparator.class 

그래서 나는 org.apache.commons이 Janrain이 그것을 사용하기 때문에 중복 된 항목이며, 그것은 또한 (외부 라이브러리 등) 안드로이드 (24)에 포함되어 있다고 생각 : 내 프로젝트를 빌드 할 때 나는 다음과 같이 중복 오류가 발생합니다. 같은 점프 Gradle을 : 그래서에서 공유지를 제거하려

configurations { 
    all*.exclude group: 'org.apache.commons' 
} 

지금, 나는이 org.apache.commons 제거 것으로 기대하지만, 난 여전히 중복 항목 Gradle을 오류가 발생합니다. 나는 그것이 구성에 포함 할 때 Gradle을 파일 이유는 org.apache.commons도 제외되지

apply plugin: 'com.android.library' 

android { 
    compileSdkVersion 24 
    buildToolsVersion "24.0.3" 
    //If building with strict Android 6.0 the following will need to be uncommented 
    //See: https://developer.android.com/about/versions/marshmallow/android-6.0-changes.html 
    //And: http://stackoverflow.com/questions/31653002/how-to-use-the-legacy-apache-http-client-on-android-m 
    useLibrary "org.apache.http.legacy" 

    defaultConfig { 
     minSdkVersion 17 
     targetSdkVersion 24 
     // replace the below string with your own Google client ID. Make sure this is consistent 
     // with the values used in openid_appauth_idp_configs.xml 
     manifestPlaceholders = [ 
       <my values>] 
    } 

    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' 
     } 

    } 
} 

configurations { 
    all*.exclude group: 'org.apache.commons' 
} 

dependencies { 
    compile 'com.android.support:support-v4:24.2.0' 
    compile files('libs/org.apache.http.legacy.jar') 
    compile 'com.squareup.okhttp:okhttp:2.5.0' 
    compile 'com.squareup.okhttp:okhttp-apache:2.5.0' 
    compile 'com.squareup.okio:okio:1.6.0' 
    compile 'com.squareup.picasso:picasso:2.5.2' 
    compile 'com.squareup.retrofit:retrofit:1.8.0' 
    compile 'net.openid:appauth:0.4.1' 
} 

allprojects { 
    repositories { 
     jcenter() 
    } 
    gradle.projectsEvaluated { 
     tasks.withType(JavaCompile) { 
      options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation" 
     } 
    } 
} 

점프 : 여기

은 무엇입니까?

답변

1

그냥 다음 항아리

task findDuplicates { 
    doLast { 
     def findMe = 'org/apache/commons/codec/StringEncoderComparator.class' 
     configurations.runtime.asFileTree.matching { 
      include '**/*.jar' 
     }.files.each { File jarFile -> 
      zipTree(jarFile).visit { FileVisitDetails fvd -> 
       if (fvd.path == findMe) { 
        println "Found $findMe in $jarFile.name" 
       } 
      } 
     } 
    } 
} 
+0

네를 찾아 gradle findDuplicates를 실행하여 build.gradle에이 작업을 추가, 중복을 추가되었고, 지금 고정 있는지 알아 냈어. – Nerd