# Android 不同的第三方库有相同的 jar library

Android 不同的第三方库有相同的 jar library

可以在引入的时候排除其中的某个 lib or jar

  compile('com.github.vipheyue:fastlib:v1.1.82', {
//        exclude group: 'com.jakewharton.rxbinding',module: 'rxbinding'
        exclude group: 'io.reactivex', module: 'rxandroid'
        exclude group: 'com.google.code.gson'
        exclude group: 'com.squareup.okio'
        exclude group: 'io.reactivex'
        exclude group: 'com.squareup.okhttp3', module: 'okhttp'

    })

group 在这里

# Android 不同的第三方库有相同的 jar library_第1张图片
f2774860-c3cd-430d-9ed5-ed76956045ea.png

或者 在这里

# Android 不同的第三方库有相同的 jar library_第2张图片
06d963c3-fe75-40c8-8d57-da555bba1160.png

官方文档 慢慢啃吧
https://docs.gradle.org/current/userguide/dependency_management.html#sec:dependency_resolution

http://www.paincker.com/gradle-dependencies

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

com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: okio/AsyncTimeout$1.class

你可能感兴趣的:(# Android 不同的第三方库有相同的 jar library)