More than one file was found with OS independent path 'META-INF/DEPENDENCIES'

Android Studio 3.0.1 gradle问题
问题log:

Error:com.android.builder.merge.DuplicateRelativeFileException: More than one file was found with OS independent path 'META-INF/DEPENDENCIES' 

复现步骤:
使用网络库httpcore和httpmime后运行, 无法编译出apk

解决方法:
在Android module(非Android library module)中的android标签下添加

packagingOptions {
        exclude 'META-INF/DEPENDENCIES'
}        

你可能感兴趣的:(More than one file was found with OS independent path 'META-INF/DEPENDENCIES')